示例#1
0
        public Surface GetSurfaceUnderPoint(Point point)
        {
            if (Surfaces.Any(i => i.Key == point))
            {
                return(Surfaces.First(i => i.Key == point).Value);
            }

            return(null);
        }