Пример #1
0
 private static void OnTick(EventArgs args)
 {
     ShopController.Tick();
     PhaseController.Tick();
     LaneController.Tick();
     GankController.Tick();
     TeleportController.Tick();
     MovementController.Tick();
     WardController.Tick();
     RecallController.Tick();
 }
Пример #2
0
        static void CreateWard()
        {
            for (int i = 1; i < 10; i++)
            {
                Ward ward = new Ward();
                ward.Location = "ward " + i;
                ward.TelephoneExtentionNumber = "+1" + i;
                ward.WardNumber = i;
                ward.WardName   = "medical";

                WardController wc   = new WardController();
                SqlException   wcse = wc.Create(ward);
            }
        }
Пример #3
0
 private void Start()
 {
     animator   = GetComponent <Animator>();
     controller = GetComponentInParent <WardController>();
 }