mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
17 lines
No EOL
380 B
JavaScript
17 lines
No EOL
380 B
JavaScript
define(["Chuck/Processor"], function(Processor){
|
|
|
|
function Game(networker){
|
|
this.networker = networker;
|
|
this.processor = new Processor();
|
|
}
|
|
|
|
Game.prototype.processGameCommand = function(command, options){
|
|
console.log('(not implemented) processGameCommand:', command, options);
|
|
}
|
|
|
|
Game.prototype.destruct = function(){
|
|
this.processor.destruct();
|
|
}
|
|
|
|
return Game;
|
|
}); |