RKNViewController.m 717 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (c) 2014, Oculus VR, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. *
  9. */
  10. //
  11. // RKNViewController.m
  12. // RakNetTest
  13. #import "RKNViewController.h"
  14. @interface RKNViewController ()
  15. @end
  16. @implementation RKNViewController
  17. - (void)viewDidLoad
  18. {
  19. [super viewDidLoad];
  20. // Do any additional setup after loading the view, typically from a nib.
  21. }
  22. - (void)didReceiveMemoryWarning
  23. {
  24. [super didReceiveMemoryWarning];
  25. // Dispose of any resources that can be recreated.
  26. }
  27. @end
粤ICP备19079148号