mirror of
https://github.com/OpenEmu/OpenEmu-SDK.git
synced 2025-11-01 10:15:12 +00:00
17 lines
274 B
Objective-C
17 lines
274 B
Objective-C
//
|
|
// NSMutableArray+OEQueueAdditions.h
|
|
// OpenEmu-SDK
|
|
//
|
|
// Created by Remy Demarest on 28/07/2016.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSMutableArray<ObjectType> (OEQueueAdditions)
|
|
|
|
- (void)pushObject:(ObjectType)object;
|
|
- (ObjectType)popObject;
|
|
|
|
@end
|