Remove helpindex now that it is generated during build. Add a bit to the help about...
[enjoyable.git] / NSMutableArray+MoveObject.h
1 //
2 // NSMutableArray+MoveObject.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/7/13.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface NSMutableArray (MoveObject)
12
13 - (void)moveObjectAtIndex:(NSUInteger)src toIndex:(NSUInteger)dst;
14
15 @end