You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
236 B
C++
18 lines
236 B
C++
15 years ago
|
#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
|