mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 02:22:07 -05:00
17 lines
228 B
JavaScript
17 lines
228 B
JavaScript
/************************************
|
|
|
|
SCENE BASE CLASS
|
|
|
|
*************************************/
|
|
|
|
function Scene(){
|
|
|
|
var self = this;
|
|
|
|
// TO IMPLEMENT
|
|
self.update = function(){};
|
|
|
|
// TO IMPLEMENT
|
|
self.kill = function(){};
|
|
|
|
} |