mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2025-02-17 10:54:22 +01:00
20 lines
399 B
C#
20 lines
399 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.UI
|
|
{
|
|
public abstract class FieGameUIComponentManagerBase : MonoBehaviour
|
|
{
|
|
private FieGameCharacter _componentManagerOwner;
|
|
|
|
public FieGameCharacter componentManagerOwner => _componentManagerOwner;
|
|
|
|
public virtual void setComponentManagerOwner(FieGameCharacter owner)
|
|
{
|
|
_componentManagerOwner = owner;
|
|
}
|
|
|
|
public virtual void StartUp()
|
|
{
|
|
}
|
|
}
|
|
}
|