14 lines
248 B
C#
14 lines
248 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class ButtonSelectRegionMaster : ButtonOnClick {
|
|||
|
|
|||
|
public string region;
|
|||
|
|
|||
|
public override void OnClick() {
|
|||
|
ButtonConnectOnline.region = region;
|
|||
|
}
|
|||
|
|
|||
|
}
|