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,61 @@
package versions.version1.a3d.geometry
{
import flash.utils.ByteArray;
public class A3DVertexBuffer
{
private var §_-96§:Vector.<int>;
private var §_-79§:ByteArray;
private var §_-g1§:uint;
public function A3DVertexBuffer(attributes:Vector.<int>, byteBuffer:ByteArray, vertexCount:uint)
{
super();
this.§_-96§ = attributes;
this.§_-79§ = byteBuffer;
this.§_-g1§ = vertexCount;
}
public function get attributes() : Vector.<int>
{
return this.§_-96§;
}
public function set attributes(value:Vector.<int>) : void
{
this.§_-96§ = value;
}
public function get byteBuffer() : ByteArray
{
return this.§_-79§;
}
public function set byteBuffer(value:ByteArray) : void
{
this.§_-79§ = value;
}
public function get vertexCount() : uint
{
return this.§_-g1§;
}
public function set vertexCount(value:uint) : void
{
this.§_-g1§ = value;
}
public function toString() : String
{
var result:String = "A3DVertexBuffer [";
result += "attributes = " + this.attributes + " ";
result += "byteBuffer = " + this.byteBuffer + " ";
result += "vertexCount = " + this.vertexCount + " ";
return result + "]";
}
}
}