Fix SampleGame.iOS not using GameUIApplication

This commit is contained in:
Shane Woolcock
2019-06-16 15:21:44 +09:30
parent cdd9058127
commit 92c2b0e771

View File

@@ -12,7 +12,7 @@ namespace SampleGame.iOS
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
UIApplication.Main(args, "GameUIApplication", "AppDelegate");
}
}
}