14 lines
258 B
C#
14 lines
258 B
C#
namespace Sledgemapper.Shared.Entities
|
|
{
|
|
public class Overlay :BaseMapEntity
|
|
{
|
|
public bool Intersection { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{X}_{Y}_{Intersection}";
|
|
}
|
|
}
|
|
|
|
|
|
}
|