Update() 공개 메소드

public Update ( ) : void
리턴 void
예제 #1
0
    public static bool Handler(Event type, Dictionary <string, string> props)
    {
        MoveScript ms = new MoveScript();

        ms.Update(props);
        Console.WriteLine(ms.location.ToString());
        return(true);
    }
예제 #2
0
파일: Wave.cs 프로젝트: DKelly01/BulletHell
 public void update()
 {
     //this section can be modified to update the active status of mobs
     script.Update();
     if (!script.Active)
     {
         Active = false;
     }
 }