@awayjs/stage
Version:
Stage for AwayJS
14 lines (12 loc) • 331 B
text/typescript
import { ByteArray } from '@awayjs/core';
export class Part {
public name: string = '';
public version: number = 0;
public data: ByteArray;
public native: Record<number, string> = {};
constructor(name: string = null, version: number = null) {
this.name = name;
this.version = version;
this.data = new ByteArray();
}
}