using UnityEngine; namespace Neatly.UI { public interface TextInterface { void SetText(string value); void SetColor(Color c); void SetColor(float r, float g, float b, float a = 1f); } }