2025-06-18 17:24:21 +02:00

18 lines
255 B
Objective-C

#import <LegacyComponents/SGraphObjectNode.h>
@implementation SGraphObjectNode
@synthesize object = _object;
- (id)initWithObject:(id)object
{
self = [super init];
if (self != nil)
{
_object = object;
}
return self;
}
@end