cyphesis/rulesets/TaskScript.cpp
Al Riddoch bd153b9f87 2005-12-05 Al Riddoch <alriddoch@zepler.org>
* server/EntityFactory.h, server/EntityFactory.cpp: Add a handler for
	  objects in rules files.

	* rulesets/TaskScript.h, rulesets/TaskScript.cpp: Task class which
	  delegates functionality to a script object. Basically just a
	  stub at this point.

	* server/TaskFactory.h server/TaskFactory.cpp: Factory class for
	  creating instances of Task classes.
2005-12-05 21:23:50 +00:00

25 lines
446 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) 2005 Alistair Riddoch
#include "rulesets/TaskScript.h"
TaskScript::TaskScript(Character & chr) : Task(chr)
{
}
TaskScript::~TaskScript()
{
}
void TaskScript::setup(OpVector & res)
{
}
void TaskScript::irrelevant()
{
}
void TaskScript::TickOperation(const Operation & op, OpVector & res)
{
}