10 lines
159 B
C#
10 lines
159 B
C#
using UnityEngine;
|
|
|
|
public class HedgeHogBehaviour : MonoBehaviour
|
|
{
|
|
public void moveHedgeHog()
|
|
{
|
|
Debug.Log("HedgeHog is moving!");
|
|
}
|
|
}
|