mirror of
https://github.com/DerTyp7/grow-ai-unity.git
synced 2025-10-29 12:32:10 +01:00
13 lines
199 B
C#
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");
|
|
}
|
|
|
|
}
|