|
Community Map Builder 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |
No overview generated for 'Model.js'
Class Summary | |
Model |
/* License: LGPL as per: http://www.gnu.org/copyleft/lesser.html $Id: Model.js 3091 2007-08-09 12:21:54Z gjvoosten $ */ // Ensure this object's dependancies are loaded. mapbuilder.loadScript(baseDir+"/model/ModelBase.js"); /** * Generic Model object for models where no specialization is required. This is * just an instance of a abstract ModelBase. * @constructor * @base ModelBase * @author Mike Adair * @param modelNode The model's XML object node from the configuration document * @param parent Parent of this model, set to null if there is no parent. */ function Model(modelNode, parent) { // Inherit the ModelBase functions and parameters ModelBase.apply(this, new Array(modelNode, parent)); }
|
Community Map Builder 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |