mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* Changed typedef names to ones which make more sense, and are clearer. There is no change in functionality in this commit.
27 lines
518 B
C++
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 *)
|
|
{
|
|
}
|