2012-01-27 08:47:14 -07:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
|
|
|
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.
|
|
|
|
*/
|
2011-03-19 16:26:32 -06:00
|
|
|
|
2011-04-10 05:12:28 -06:00
|
|
|
#pragma once
|
|
|
|
|
2011-03-19 16:26:32 -06:00
|
|
|
#ifndef MODULE_FACTORY_H_INCLUDED
|
|
|
|
#define MODULE_FACTORY_H_INCLUDED
|
|
|
|
|
|
|
|
namespace DFHack
|
|
|
|
{
|
|
|
|
class Module;
|
2011-06-17 07:02:43 -06:00
|
|
|
Module* createGui();
|
|
|
|
Module* createWorld();
|
|
|
|
Module* createMaterials();
|
|
|
|
Module* createVegetation();
|
2011-07-20 19:26:52 -06:00
|
|
|
Module* createNotes();
|
2011-12-07 12:37:09 -07:00
|
|
|
Module* createGraphic();
|
2011-03-19 16:26:32 -06:00
|
|
|
}
|
2011-07-13 00:17:51 -06:00
|
|
|
#endif
|