| 12345678910111213141516171819202122232425262728 |
- using System;
- using UIKit;
- using Urho;
- using Urho.iOS;
- namespace Playgrounds.iOS
- {
- public partial class SecondViewController : UIViewController
- {
- protected SecondViewController(IntPtr handle) : base(handle)
- {
- // Note: this .ctor should not contain any initialization logic.
- }
- public override async void ViewDidLoad()
- {
- base.ViewDidLoad();
- // Perform any additional setup after loading the view, typically from a nib.
- }
- public override void DidReceiveMemoryWarning()
- {
- base.DidReceiveMemoryWarning();
- // Release any cached data, images, etc that aren't in use.
- }
- }
- }
|