mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 12:45:36 +00:00
11 lines
205 B
C++
11 lines
205 B
C++
|
|
#include "category.hpp"
|
|
|
|
CSMPrefs::Category::Category (State *parent, const std::string& key)
|
|
: mParent (parent), mKey (key)
|
|
{}
|
|
|
|
const std::string& CSMPrefs::Category::getKey() const
|
|
{
|
|
return mKey;
|
|
}
|