squall/storm/registry/mac/Static.hpp

17 lines
279 B
C++
Raw Normal View History

#ifndef STORM_REGISTRY_MAC_STATIC_HPP
#define STORM_REGISTRY_MAC_STATIC_HPP
#import <Foundation/Foundation.h>
class SRegStatic {
public:
NSMutableDictionary<NSString*, NSUserDefaults*>* hives;
static SRegStatic* Get();
SRegStatic();
~SRegStatic();
};
#endif