15 lines
263 B
C#
15 lines
263 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
|
|
public class FloorMapLocation : UdonSharpBehaviour
|
|
{
|
|
public string Country = "";
|
|
public string Region = "";
|
|
public string City = "";
|
|
}
|