mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
24 lines (19 loc) • 464 B
text/typescript
import BinaryStream from '../../../common/binarystream';
/**
* An import.
*/
export default class Import {
isCustom: number = 0;
path: string = '';
load(stream: BinaryStream) {
this.isCustom = stream.readUint8();
this.path = stream.readUntilNull();
}
save(stream: BinaryStream) {
stream.writeUint8(this.isCustom);
stream.write(`${this.path}\0`);
}
getByteLength() {
return 2 + this.path.length;
}
}