1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00
OpenMW/apps/opencs/view/world/genericcreator.hpp
2013-07-26 21:09:23 +02:00

20 lines
284 B
C++

#ifndef CSV_WORLD_GENERICCREATOR_H
#define CSV_WORLD_GENERICCREATOR_H
#include "creator.hpp"
namespace CSVWorld
{
class GenericCreator : public Creator
{
Q_OBJECT
public:
GenericCreator();
virtual void reset();
};
}
#endif