protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            var g = new Bomber();

            SetContentView((View)g.Services.GetService(typeof(View)));
            g.Run();
        }
Exemple #2
0
 public EventsHandler(Bomber plugin) => this.plugin = plugin;
Exemple #3
0
 public BomberCommand(Bomber plugin) => this.plugin = plugin;
Exemple #4
0
 public override void OnEnable()
 {
     singleton = this;
     this.Info(this.Details.name + " v." + this.Details.version + " has been enabled.");
 }
 public Functions(Bomber plugin) => this.plugin = plugin;
 public Functions(Bomber plugin)
 {
     this.Bomber         = plugin;
     Functions.singleton = this;
 }