mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
cd973f8aae
* Added unit tests for the ios code. * Moved the tests to live next to the source. * Added mocking library. * Fixed formatting and removed third_party from the format check. * fixed formatting 2 * Removed ocmock from third_party. * Added ocmock to third_party, compile from source. * removed ocmock from license checking * updated licenses_flutter * updated tool_signature
17 lines
313 B
Objective-C
17 lines
313 B
Objective-C
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#import "ViewController.h"
|
|
|
|
@interface ViewController ()
|
|
@end
|
|
|
|
@implementation ViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
}
|
|
|
|
@end
|