From 2668b17162e5a9fbdce2cfc776f80044f9f4d0d9 Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Wed, 1 Jan 2020 19:09:37 -0600 Subject: [PATCH] fix: move listserver classes into package --- .../ListServer/UI/UIServerStatusSlot.cs | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Assets/Mirror/Examples/ListServer/UI/UIServerStatusSlot.cs b/Assets/Mirror/Examples/ListServer/UI/UIServerStatusSlot.cs index 02efe82cc..ed2ee3c23 100644 --- a/Assets/Mirror/Examples/ListServer/UI/UIServerStatusSlot.cs +++ b/Assets/Mirror/Examples/ListServer/UI/UIServerStatusSlot.cs @@ -3,11 +3,14 @@ using UnityEngine; using UnityEngine.UI; -public class UIServerStatusSlot : MonoBehaviour +namespace Mirror.Examples.ListServer { - public Text titleText; - public Text playersText; - public Text latencyText; - public Text addressText; - public Button joinButton; -} + public class UIServerStatusSlot : MonoBehaviour + { + public Text titleText; + public Text playersText; + public Text latencyText; + public Text addressText; + public Button joinButton; + } +} \ No newline at end of file