Add mostly deobfuscated package, class and function name source

This commit is contained in:
Pyogenics
2025-05-09 17:55:37 +01:00
parent bbf438a33f
commit f8ac96858f
1034 changed files with 48614 additions and 40522 deletions

View File

@@ -0,0 +1,19 @@
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();
}
}
}