mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 22:27:58 +01:00
9 lines
156 B
C#
9 lines
156 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.UI
|
|
{
|
|
public abstract class FieUILocalizedTextObjectBase : MonoBehaviour
|
|
{
|
|
public abstract void InitializeText();
|
|
}
|
|
}
|