mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 18:39:29 +00:00
18 lines
236 B
C++
18 lines
236 B
C++
#ifndef GAME_MWCLASS_POTION_H
|
|
#define GAME_MWCLASS_POTION_H
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
class Potion : public MWWorld::Class
|
|
{
|
|
public:
|
|
|
|
|
|
static void registerSelf();
|
|
};
|
|
}
|
|
|
|
#endif
|