2002-11-25 Al Riddoch <alriddoch@zepler.org>

* common/Database.h, common/Database.cpp, server/Persistance.cpp:
	  Finish entity table creation code, and test it.

	* rulesets/Entity.cpp, rulesets/Entity.h, rulesets/EntityFactory.h,
	  rulesets/PythonThingScript.cpp, rulesets/PythonThingScript.h,
	  rulesets/Python_API.cpp, rulesets/Python_API.h,
	  rulesets/Thing.cpp, rulesets/Thing.h, server/EntityFactory.cpp,
	  server/EntityFactory.h, server/WorldRouter.cpp: Sort out
	  some incorrect use of Thing instead of Entity. Move some code
	  from Thing into Entity.
This commit is contained in:
Al Riddoch 2002-11-25 22:48:13 +00:00
parent 52b789eea0
commit cb24511ec0
17 changed files with 173 additions and 53 deletions

View file

@ -15,7 +15,7 @@
static const bool debug_flag = false;
PythonThingScript::PythonThingScript(PyObject * o, Thing & t) :
PythonThingScript::PythonThingScript(PyObject * o, Entity & t) :
PythonScript(o, t), thing(t)
{
}