16 lines
319 B
C#
16 lines
319 B
C#
|
|
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)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|