Changeset 9869 in orxonox.OLD for trunk/src/lib/script_engine/script_method.cc
- Timestamp:
- Oct 3, 2006, 12:19:30 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/script_engine/script_method.cc
r8711 r9869 25 25 { } 26 26 27 ScriptMethod* ScriptMethod::addMethod(const std::string& methodName, const Executor & executor)27 ScriptMethod* ScriptMethod::addMethod(const std::string& methodName, const Executor<lua_State*>& executor) 28 28 { 29 29 this->methods.push_back(ScriptMethod::Method(methodName, executor)); … … 32 32 } 33 33 34 ScriptMethod::Method::Method(const std::string& name, const Executor & executor)34 ScriptMethod::Method::Method(const std::string& name, const Executor<lua_State*>& executor) 35 35 { 36 36 this->name = name;
Note: See TracChangeset
for help on using the changeset viewer.