mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
15 lines
338 B
C++
15 lines
338 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) :
|
||
|
|
script_object(o), entity(t)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
PythonScript::~PythonScript()
|
||
|
|
{
|
||
|
|
}
|