mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
16 lines
279 B
C++
16 lines
279 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
|