feature: Message behaviour separation

This commit is contained in:
Gerard Gascón 2024-01-26 20:44:43 +01:00
parent c66047cd26
commit 4b5689a283
7 changed files with 72 additions and 12 deletions

View file

@ -0,0 +1,12 @@
using System;
using UnityEngine;
namespace Messaging {
public class Message : MonoBehaviour{
public RectTransform RectTransform { private set; get; }
private void Awake() {
RectTransform = GetComponent<RectTransform>();
}
}
}