InsideJobAppDelegate.m 562 B

1234567891011121314151617181920212223
  1. //
  2. // InsideJobAppDelegate.m
  3. // InsideJob
  4. //
  5. // Created by Adam Preble on 10/6/10.
  6. // Copyright 2010 Adam Preble. All rights reserved.
  7. //
  8. #import "InsideJobAppDelegate.h"
  9. #import "NBTContainer.h"
  10. @implementation InsideJobAppDelegate
  11. @synthesize window;
  12. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  13. // Insert code here to initialize your application
  14. NSData *fileData = [NSData dataWithContentsOfURL:[NSURL fileURLWithPath:@"../../level.dat"]];
  15. NBTContainer *nbtFile = [NBTContainer nbtContainerWithData:fileData];
  16. }
  17. @end