示例#1
0
        public bool Shot(Map.Map Map)
        {
            Bullet Bullet = new Bullet(this.X, this.Y, this.Direction);

            Bullet.Move(this.Direction, Map);

            Map.AddObject(Bullet);

            return(true);
        }