Changeset 8399 in orxonox.OLD for branches/script_engine/src/lib/script_engine/script_class.cc
- Timestamp:
- Jun 14, 2006, 4:53:53 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/lib/script_engine/script_class.cc
r8393 r8399 28 28 assert(scriptMethods != NULL); 29 29 this->setClassID(CL_SCRIPT_CLASS, "ScriptClass"); 30 this->classID = classID;31 30 32 this->scriptMethods = scriptMethods; 31 this->_classID = classID; 32 33 this->_scriptMethods = scriptMethods; 33 34 } 34 35 … … 39 40 ScriptClass::~ScriptClass () 40 41 { 41 delete this-> scriptMethods;42 delete this->_scriptMethods; 42 43 }
Note: See TracChangeset
for help on using the changeset viewer.