Changeset 8021 in orxonox.OLD for branches/script_engine/src/lib
- Timestamp:
- May 31, 2006, 12:46:21 PM (18 years ago)
- Location:
- branches/script_engine/src/lib/script_engine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/lib/script_engine/Script.h
r7975 r8021 11 11 ~Script(); 12 12 13 void setFile(); 14 13 15 void insertObject(); 16 void registerClass(); 17 18 void executeLuaFunction(); 19 void addParam(); 20 14 21 15 22 16 23 private: 17 24 18 lua_State* luaState; //!< The lua_State that the Script works on25 lua_State* luaState; //!< The lua_State that the Script works on 19 26 20 27 -
branches/script_engine/src/lib/script_engine/lunartest.lua
r7975 r8021 8 8 o:printName() 9 9 10 Obj:printName() 10 Obj:printName() --external added object 11 11 12 12 a = Account(100)
Note: See TracChangeset
for help on using the changeset viewer.