Project_WL/Assets/Script/UI/Map/MapChoiceUI.cs

15 lines
235 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MapChoiceUI : BackKeyAdd
2024-12-15 01:39:39 +00:00
{
int ChoiceTab = 0; // 0 월드맵, 1 던전
2024-12-15 01:39:39 +00:00
public override void Set()
{
base.Set();
2024-12-15 01:39:39 +00:00
}
}