Files
example-top-down-unity/Assets/Scripts/InteractableObject.cs
Janis M 352581713f schule
2022-02-14 15:23:22 +01:00

13 lines
186 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/*
Base Class for all objects with interaction
*/
public class InteractableObject : MonoBehaviour
{
}