Field Node Setup

This commit is contained in:
brausjonas
2023-01-23 19:43:54 +01:00
parent 7f202327c0
commit e0a24ad8b3
31 changed files with 989 additions and 121 deletions
@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class Field : MonoBehaviour
{
[SerializeField] private GameObject[] target;
public GameObject[] Target
{
get
{
return target;
}
}
public abstract void Action();
}