示例#1
0
        public bool IsIntersected()
        {
            if (collision.Intersects(new Rectangle((int)mouse.GetX(), (int)mouse.GetY(), 1, 1)))
            {
                return(true);
            }

            return(false);
        }