25 lines
375 B
Objective-C
25 lines
375 B
Objective-C
//
|
|
// NesLayer.h
|
|
//
|
|
//
|
|
// Created by Мустафаев Селим Мустафаевич on 28.09.2023.
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "NesSystem.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NesLayer : CALayer
|
|
|
|
@property NesSystem* system;
|
|
|
|
- (instancetype)initWithNesSystem:(NesSystem*)system;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|