mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 02:19:07 -07:00
Use rename identifiers
This commit is contained in:
@@ -4,47 +4,47 @@ package versions.version2.a3d.objects
|
||||
|
||||
public class A3D2Object
|
||||
{
|
||||
private var §_-jD§:int;
|
||||
private var var_270:int;
|
||||
|
||||
private var §_-3I§:Long;
|
||||
private var var_101:Long;
|
||||
|
||||
private var _name:String;
|
||||
|
||||
private var §_-fP§:Long;
|
||||
private var var_269:Long;
|
||||
|
||||
private var §_-bP§:A3D2Transform;
|
||||
private var var_268:A3D2Transform;
|
||||
|
||||
private var §_-1u§:Boolean;
|
||||
private var var_261:Boolean;
|
||||
|
||||
public function A3D2Object(boundBoxId:int, id:Long, name:String, parentId:Long, transform:A3D2Transform, visible:Boolean)
|
||||
{
|
||||
super();
|
||||
this.§_-jD§ = boundBoxId;
|
||||
this.§_-3I§ = id;
|
||||
this.var_270 = boundBoxId;
|
||||
this.var_101 = id;
|
||||
this._name = name;
|
||||
this.§_-fP§ = parentId;
|
||||
this.§_-bP§ = transform;
|
||||
this.§_-1u§ = visible;
|
||||
this.var_269 = parentId;
|
||||
this.var_268 = transform;
|
||||
this.var_261 = visible;
|
||||
}
|
||||
|
||||
public function get boundBoxId() : int
|
||||
{
|
||||
return this.§_-jD§;
|
||||
return this.var_270;
|
||||
}
|
||||
|
||||
public function set boundBoxId(value:int) : void
|
||||
{
|
||||
this.§_-jD§ = value;
|
||||
this.var_270 = value;
|
||||
}
|
||||
|
||||
public function get id() : Long
|
||||
{
|
||||
return this.§_-3I§;
|
||||
return this.var_101;
|
||||
}
|
||||
|
||||
public function set id(value:Long) : void
|
||||
{
|
||||
this.§_-3I§ = value;
|
||||
this.var_101 = value;
|
||||
}
|
||||
|
||||
public function get name() : String
|
||||
@@ -59,32 +59,32 @@ package versions.version2.a3d.objects
|
||||
|
||||
public function get parentId() : Long
|
||||
{
|
||||
return this.§_-fP§;
|
||||
return this.var_269;
|
||||
}
|
||||
|
||||
public function set parentId(value:Long) : void
|
||||
{
|
||||
this.§_-fP§ = value;
|
||||
this.var_269 = value;
|
||||
}
|
||||
|
||||
public function get transform() : A3D2Transform
|
||||
{
|
||||
return this.§_-bP§;
|
||||
return this.var_268;
|
||||
}
|
||||
|
||||
public function set transform(value:A3D2Transform) : void
|
||||
{
|
||||
this.§_-bP§ = value;
|
||||
this.var_268 = value;
|
||||
}
|
||||
|
||||
public function get visible() : Boolean
|
||||
{
|
||||
return this.§_-1u§;
|
||||
return this.var_261;
|
||||
}
|
||||
|
||||
public function set visible(value:Boolean) : void
|
||||
{
|
||||
this.§_-1u§ = value;
|
||||
this.var_261 = value;
|
||||
}
|
||||
|
||||
public function toString() : String
|
||||
|
||||
Reference in New Issue
Block a user