var ArraySchema = require("@colyseus/schema").ArraySchema;
//decorating like this:
(require("@colyseus/schema").type(["number"]))(MySchema.prototype,"turns");
//in MySchema:
this.turns = new ArraySchema(); //no update on client
//... some action
this.turns.push(10); //have update on client
//... some more action, game over, now we need to reset
this.turns = new ArraySchema(); //no update on client again so there is a desync with server