3DTD/Assets/Scripts/Tower/Barrel.cs

10 lines
151 B
C#
Raw Normal View History

2024-04-20 16:28:46 +02:00
using UnityEngine;
public class Barrel : MonoBehaviour
{
[SerializeField]
private Transform tip;
public Transform Tip => tip;
}