- Added the missing Top Grunge portrait and intro theme. - Added In Jail and Video Music Clue sound effects.
14 lines
235 B
C#
14 lines
235 B
C#
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
|
|
public class FloorMapLocation : UdonSharpBehaviour
|
|
{
|
|
public string Country = "";
|
|
public string City = "";
|
|
}
|