Files
project-entity/Assets/_Project/Develop/Runtime/UI/Screens/Gameplay/GameplayScreenView.cs
2026-02-18 23:02:28 +05:00

13 lines
407 B
C#

using _Project.Develop.Runtime.UI.Common;
using _Project.Develop.Runtime.UI.Core;
using UnityEngine;
namespace _Project.Develop.Runtime.UI.Screens.Gameplay
{
public class GameplayScreenView : MonoBehaviour, IView
{
[field: SerializeField] public IconTextView CoinsView { get; private set; }
[field: SerializeField] public IconTextListView StatsView { get; private set; }
}
}