Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/Character/CharaterSelection.cs
2025-02-01 18:45:05 +09:00

22 lines
450 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class CharaterSelection : MonoBehaviour
{
public CharaterCreateUI characterCreateUI;
public void OnSelectBlackCat()
{
characterCreateUI.SelectCharacter("BlackCat");
}
public void OnSelectWhiteCat()
{
characterCreateUI.SelectCharacter("WhiteCat");
}
}
}