Program.cs 556 B

12345678910111213141516171819202122232425
  1. using System;
  2. using Android.App;
  3. using Android.Runtime;
  4. namespace SamplesContentBuilder.Android
  5. {
  6. [Application]
  7. public class MainApplication : Application
  8. {
  9. public MainApplication(IntPtr handle, JniHandleOwnership transfer) : base(handle, transfer) { }
  10. public override void OnCreate()
  11. {
  12. base.OnCreate();
  13. // Initialize your game here
  14. }
  15. }
  16. public static class Program
  17. {
  18. static void Main(string[] args)
  19. {
  20. // Entry point for Android
  21. }
  22. }
  23. }