[Questgen-commits] SF.net SVN: questgen:[14] trunk
Status: Planning
Brought to you by:
rfboehme
From: <rfb...@us...> - 2008-11-09 15:21:27
|
Revision: 14 http://questgen.svn.sourceforge.net/questgen/?rev=14&view=rev Author: rfboehme Date: 2008-11-09 15:21:17 +0000 (Sun, 09 Nov 2008) Log Message: ----------- Moved lua lib and src to different directories. Modified Paths: -------------- trunk/luasrc/questgen/CharacterGoal.lua trunk/luasrc/questgen/CharacterProblem.lua trunk/luasrc/questgen/Quest.lua trunk/luasrc/questgen/QuestGoal.lua trunk/luasrc/questgen/Scene.lua trunk/luasrc/questgen/Story.lua trunk/luasrc/questgen/StoryCharacter.lua Added Paths: ----------- trunk/lualib/ trunk/lualib/luasql-2.1.1/ trunk/lualib/luaunit_v13/ trunk/luasrc/ Removed Paths: ------------- trunk/lib/ trunk/src/ Property changes on: trunk/lualib ___________________________________________________________________ Added: svn:mergeinfo + Property changes on: trunk/luasrc ___________________________________________________________________ Added: svn:mergeinfo + Modified: trunk/luasrc/questgen/CharacterGoal.lua =================================================================== --- trunk/src/questgen/CharacterGoal.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/CharacterGoal.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -4,7 +4,19 @@ --]] -module(..., package.seeall) +QuestgenCharacterGoal = {} +local goalType; +local goalTarget; +function QuestgenCharacterGoal:new(o) + o = o or {} + setmetatable(o, self) + self.__index = self + return o +end +function QuestgenCharacterGoal:retTwo() + return retTwoNum; +end + Modified: trunk/luasrc/questgen/CharacterProblem.lua =================================================================== --- trunk/src/questgen/CharacterProblem.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/CharacterProblem.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -3,8 +3,3 @@ This is a module for a story. --]] - -module(..., package.seeall) - - - Modified: trunk/luasrc/questgen/Quest.lua =================================================================== --- trunk/src/questgen/Quest.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/Quest.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -3,8 +3,3 @@ This is a module for a story. --]] - -module(..., package.seeall) - - - Modified: trunk/luasrc/questgen/QuestGoal.lua =================================================================== --- trunk/src/questgen/QuestGoal.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/QuestGoal.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -3,8 +3,3 @@ This is a module for a story. --]] - -module(..., package.seeall) - - - Modified: trunk/luasrc/questgen/Scene.lua =================================================================== --- trunk/src/questgen/Scene.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/Scene.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -3,8 +3,3 @@ This is a module for a story. --]] - -module(..., package.seeall) - - - Modified: trunk/luasrc/questgen/Story.lua =================================================================== --- trunk/src/questgen/Story.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/Story.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -3,7 +3,3 @@ This is a module for a story. --]] - -module(..., package.seeall) - - Modified: trunk/luasrc/questgen/StoryCharacter.lua =================================================================== --- trunk/src/questgen/StoryCharacter.lua 2007-12-17 16:32:55 UTC (rev 6) +++ trunk/luasrc/questgen/StoryCharacter.lua 2008-11-09 15:21:17 UTC (rev 14) @@ -4,6 +4,19 @@ --]] -module(..., package.seeall) +QuestgenStoryCharacter = {} +local status; +local location; +local goalList; +function QuestgenStoryCharacter:new(o) + o = o or {} + setmetatable(o, self) + self.__index = self + return o +end + +function QuestgenStoryCharacter:retTwo() + return retTwoNum; +end \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |