7 lines
137 B
C#
7 lines
137 B
C#
using UnityEngine;
|
|
|
|
public class Bridge : MonoBehaviour, IMapElement
|
|
{
|
|
public MapElementType ElementType => MapElementType.Bridge;
|
|
}
|