Added WindowComponents class

This commit is contained in:
Pasha Bibko
2026-01-13 10:33:34 +00:00
parent fcbbed1db8
commit e700523706
5 changed files with 74 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
using UnityEngine.UI;
namespace InterfaceOff
{
public class WindowComponents : MonoBehaviour
{
[field: SerializeField] public Image WindowImage { get; private set; }
}
}