mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 17:19:56 +00:00
18 lines
307 B
C++
18 lines
307 B
C++
|
#ifndef GAME_MWWORLD_CUSTOMDATA_H
|
||
|
#define GAME_MWWORLD_CUSTOMDATA_H
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
/// \brief Base class for the MW-class-specific part of RefData
|
||
|
class CustomData
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual ~CustomData() {}
|
||
|
|
||
|
virtual CustomData *clone() const = 0;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|