Files
grow-ai-unity/Assets/Scripts/PlacedObjects/Way.cs
j.mei7 6279eb3adb a
2022-03-20 00:25:18 +01:00

13 lines
199 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Way : PlacedObject
{
public override void OnPlace()
{
//Debug.Log("Placed Way");
}
}