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