mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
begin with a lower case letter and do not contain _. * Fixed retrieval of Account from database so that the Account is now correctly referenced in the server object. * common/types.h: Changed type name to make them clearer. * rulesets/Character.h: Moved MovementInfo into its own class file, and made it a base class, with a Pedestrian super class. This allows different types of movement handling classes to be used to handle things that move differently. Al Riddoch <alriddoch@zepler.org>
14 lines
337 B
C++
14 lines
337 B
C++
// This file may be redistributed and modified only under the terms of
|
|
// the GNU General Public License (See COPYING for details).
|
|
// Copyright (C) 2000 Alistair Riddoch
|
|
|
|
#include "PythonScript.h"
|
|
|
|
PythonScript::PythonScript(PyObject * o, Entity & t) :
|
|
scriptObject(o), entity(t)
|
|
{
|
|
}
|
|
|
|
PythonScript::~PythonScript()
|
|
{
|
|
}
|