cyphesis/rulesets/Script.cpp
Al Riddoch 49691213c9 2002-03-08 Al Riddoch <alriddoch@zepler.org>
* Changed typedef names to ones which make more sense, and are
	  clearer. There is no change in functionality in this commit.
2002-03-08 14:58:40 +00:00

27 lines
518 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) 2001 Alistair Riddoch
#include "Script.h"
using Atlas::Objects::Operation::RootOperation;
class Entity;
Script::Script()
{
}
Script::~Script()
{
}
bool Script::Operation(const std::string & opname, const RootOperation & op,
OpVector & res, RootOperation * sub_op)
{
return false;
}
void Script::hook(const std::string &, Entity *)
{
}