20 lines
344 B
JavaScript
20 lines
344 B
JavaScript
class GameConfig {
|
|
constructor() {
|
|
this.key = new Uint8Array(4);
|
|
this.name = "";
|
|
//this.user = 0;
|
|
|
|
this.pieces = [ ];
|
|
this.layout = [ ];
|
|
this.pools = new Uint8Array(14);
|
|
|
|
this.actions = [ ];
|
|
this.states = [ ];
|
|
}
|
|
}
|
|
|
|
GameConfig.State = class {
|
|
//this.name = "";
|
|
|
|
};
|