Allow two walls on same node

This commit is contained in:
Michele 2021-02-03 17:35:38 +00:00
parent 87380b1a18
commit 3bcfa82fad

View File

@ -1,11 +1,10 @@
namespace Sledgemapper.Shared.Entities
{
public class Wall :BaseMapEntity
public class Wall : BaseMapEntity
{
public override string ToString()
{
return $"{X}_{Y}_{Rotation}";
}
}
}