2010-09-30 19:03:48 +00:00
|
|
|
//
|
|
|
|
// TouchCollection.h
|
|
|
|
// XNI
|
|
|
|
//
|
|
|
|
// Created by Matej Jan on 29.9.10.
|
|
|
|
// Copyright 2010 Retronator. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import "Retronator.Xni.Framework.Input.Touch.classes.h"
|
|
|
|
|
2010-10-01 02:36:21 +00:00
|
|
|
@interface TouchCollection : NSObject <NSFastEnumeration> {
|
2010-09-30 19:03:48 +00:00
|
|
|
NSMutableArray *collection;
|
|
|
|
}
|
|
|
|
|
2010-10-01 02:36:21 +00:00
|
|
|
- (id) initWithArray:(NSArray*)array;
|
|
|
|
|
2010-09-30 19:03:48 +00:00
|
|
|
- (int) count;
|
|
|
|
- (TouchLocation*)objectAtIndex:(NSUInteger)index;
|
|
|
|
- (void)addObject:(TouchLocation*)anObject;
|
|
|
|
- (void)insertObject:(TouchLocation*)anObject atIndex:(NSUInteger)index;
|
|
|
|
|
|
|
|
@end
|