예제 #1
0
파일: Tank.cs 프로젝트: JOCP9733/tank
        public override void Update()
        {
            base.Update();
            Logic.Update();

            //update direction vector for easy shooting
            Direction.X = (float)Math.Sin(Graphic.Angle * Util.DEG_TO_RAD) * _speed;
            Direction.Y = (float)Math.Cos(Graphic.Angle * Util.DEG_TO_RAD) * _speed;
        }
예제 #2
0
 public virtual void Update()
 {
     Logic.Update();
 }