mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 02:19:07 -07:00
20 lines
413 B
ActionScript
20 lines
413 B
ActionScript
package alternativa.engine3d.materials
|
|
{
|
|
public class TextureFormat
|
|
{
|
|
public static const NONE:String = "atf_none";
|
|
|
|
public static const DXT1:String = "atf_dxt1";
|
|
|
|
public static const ETC1:String = "atf_etc1";
|
|
|
|
public static const PVRTC:String = "atf_pvrtc";
|
|
|
|
public function TextureFormat()
|
|
{
|
|
super();
|
|
}
|
|
}
|
|
}
|
|
|