1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
2025-03-15 20:02:21 +01:00

25 lines
577 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace EvolutStudio
{
namespace tinysAPI
{
namespace BaseClasses
{
abstract public class BaseClass : MonoBehaviour
{
// Gives access to the modul and all instances.
public Modul modulInstance { get { return gameObject.GetComponentInParent<Modul>(); } }
#region Interface Functions
// TODO: global interface functions
#endregion
}
}
}
}