Beispiel #1
0
 private static void stopFishbot()
 {
     if (Fishbot.engine != null)
     {
         Fishbot.engine.StopEngine();
         Fishbot.Dispose();
     }
 }
Beispiel #2
0
        private static void startFishbot()
        {
            if (Fishbot.engine == null)
            {
                bool success = Fishbot.Init();

                if (success == true)
                {
                    Fishbot.engine.StartEngine(Fishbot.name);
                }
            }
        }