123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace KairoEngine.UI.ActivityMessages
- {
- [System.Serializable]
- public class ActivityMessage
- {
- public string text;
- public ActivityMessage(string text)
- {
- this.text = text;
- }
- }
- }
|