squall/storm/registry/mac/Static.hpp

16 lines
278 B
C++

#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