12 lines
269 B
C#
12 lines
269 B
C#
using UnityEngine;
|
|
|
|
namespace Fruitomation.Game
|
|
{
|
|
public class GrinderBuilding : Building
|
|
{
|
|
[Header("Grinder Specific")]
|
|
[SerializeField] private RectTransform OutputLocation;
|
|
[SerializeField] private TriggerDetector Trigger;
|
|
}
|
|
}
|