mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 10:29:09 -07:00
Add mostly deobfuscated package, class and function name source
This commit is contained in:
33
src/versions/version2/a3d/objects/A3D2Transform.as
Normal file
33
src/versions/version2/a3d/objects/A3D2Transform.as
Normal 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 + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user