mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
17 lines
254 B
C++
17 lines
254 B
C++
|
#ifndef CSV_WORLD_GLOBALS_H
|
||
|
#define CSV_WORLD_GLOBALS_H
|
||
|
|
||
|
#include "subview.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class Globals : public SubView
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
Globals (const CSMWorld::UniversalId& id, CSMWorld::Data& data);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|