ProjectDDD/Assets/_DDD/_Scripts/GameUi/BaseUi/Huds/RestaurantHud.cs

12 lines
221 B
C#
Raw Normal View History

2025-08-21 07:25:27 +00:00
namespace DDD
{
public class RestaurantHud : BaseUi
{
2025-08-24 11:44:32 +00:00
protected override void OnCreatedInitialize()
{
base.OnCreatedInitialize();
OpenPanel();
}
2025-08-21 07:25:27 +00:00
}
}