mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
13 lines
166 B
Objective-C
13 lines
166 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class SSignal;
|
|
|
|
@interface SVariable : NSObject
|
|
|
|
- (instancetype)init;
|
|
|
|
- (void)set:(SSignal *)signal;
|
|
- (SSignal *)signal;
|
|
|
|
@end
|