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,33 @@
package versions.version2.a3d.objects
{
import commons.A3DMatrix;
public class A3D2Transform
{
private var §_-6p§:A3DMatrix;
public function A3D2Transform(matrix:A3DMatrix)
{
super();
this.§_-6p§ = matrix;
}
public function get matrix() : A3DMatrix
{
return this.§_-6p§;
}
public function set matrix(value:A3DMatrix) : void
{
this.§_-6p§ = value;
}
public function toString() : String
{
var result:String = "A3D2Transform [";
result += "matrix = " + this.matrix + " ";
return result + "]";
}
}
}