Files
grow-ai-unity/Assets/Scripts/PlacedObjects/Way.cs
j.mei7 2e92ba6ea4 a
2022-03-16 18:16:19 +01:00

13 lines
197 B
C#

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