killapp/Assets/Scripts/UI/Components/SelectCountry.cs

16 lines
319 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Kill.Managers;
public class SelectCountry : MonoBehaviour
{
public GameObject countryPrefab;
public Transform countryParent;
LanguageManager.Country selectCountry;
public void Init(string code)
{
}
}