added bridges

This commit is contained in:
2023-06-27 19:14:42 +03:00
parent a535789530
commit b4c6170fa4
17 changed files with 554 additions and 182 deletions
+6
View File
@@ -0,0 +1,6 @@
using UnityEngine;
public class Bridge : MonoBehaviour, IMapElement
{
public MapElementType ElementType => MapElementType.Bridge;
}