示例#1
0
文件: Actor.cs 项目: xSpyro/Zomgbies
        public bool HasAttacked(Human human)
        {
            if(this.bounds.Intersects(human.getBounds())){
                if (ms.LeftButton == ButtonState.Pressed && !human.checkIfSafe()) {

                    return true;
                }

            }

            return false;
        }