forked from teamnwah/openmw-tes3coop
17 lines
248 B
C++
17 lines
248 B
C++
#ifndef GAME_MWCLASS_INGREDIENT_H
|
|
#define GAME_MWCLASS_INGREDIENT_H
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
class Ingredient : public MWWorld::Class
|
|
{
|
|
public:
|
|
|
|
|
|
static void registerSelf();
|
|
};
|
|
}
|
|
|
|
#endif
|