12 lines
229 B
C#
12 lines
229 B
C#
using UnityEngine;
|
|
|
|
public class MapElement : MonoBehaviour, IMapElement
|
|
{
|
|
[SerializeField]
|
|
private MapElementSO _elementSO;
|
|
public MapElementSO ElementSO => _elementSO;
|
|
|
|
public virtual void Hit()
|
|
{
|
|
}
|
|
} |