mirror of
https://github.com/DerTyp7/example-top-down-unity.git
synced 2025-10-29 12:32:09 +01:00
13 lines
186 B
C#
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
|
|
{
|
|
|
|
}
|