Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/script_engine/script_class.h
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/script_engine/script_class.h
r9709 r9715 25 25 class ScriptClass : public BaseObject 26 26 { 27 NewObjectListDeclaration(ScriptClass);27 ObjectListDeclaration(ScriptClass); 28 28 29 29 public: … … 37 37 38 38 protected: 39 ScriptClass(const std::string& name, const NewClassID& classID, ScriptMethod* scriptMethods);39 ScriptClass(const std::string& name, const ClassID& classID, ScriptMethod* scriptMethods); 40 40 41 41 private: 42 NewClassID _classID;42 ClassID _classID; 43 43 ScriptMethod* _scriptMethods; 44 44 }; … … 51 51 { 52 52 public: 53 tScriptClass(const std::string& name, NewClassID classID, ScriptMethod* scriptMethods)53 tScriptClass(const std::string& name, ClassID classID, ScriptMethod* scriptMethods) 54 54 : ScriptClass(name, classID, scriptMethods) 55 55 { }
Note: See TracChangeset
for help on using the changeset viewer.