Map Base
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
function TestMap() {
|
||||
Map.call(this);
|
||||
|
||||
Map.setChunkSize(16, 16, 16);
|
||||
Map.setPosition(0, 0, 0);
|
||||
}
|
||||
|
||||
TestMap.prototype = Object.create(Map.prototype);
|
||||
TestMap.prototype.constructor = TestMap;
|
||||
|
||||
TestMap.prototype.update = function() {
|
||||
};
|
||||
|
||||
TestMap.prototype.dispose = function() {
|
||||
};
|
||||
|
||||
module = TestMap;
|
||||
Reference in New Issue
Block a user