Skip to content

Commit

Permalink
BUG: revert breaking changes from #76
Browse files Browse the repository at this point in the history
  • Loading branch information
pdcook committed Jun 12, 2022
1 parent 0eac1ff commit 30dad76
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion UnboundLib/Networking/PingMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using UnboundLib.Networking;
using UnityEngine;

namespace UnboundLib.Networking
namespace UnboundLib
{
[DisallowMultipleComponent]
public class PingMonitor : MonoBehaviourPunCallbacks
Expand Down
2 changes: 1 addition & 1 deletion UnboundLib/Utils/MonoBehaviourExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using UnboundLib.Networking;
using UnityEngine;

namespace UnboundLib.Utils
namespace UnboundLib
{
// stolen from RWF
public static class MonoBehaviourExtensions
Expand Down
2 changes: 1 addition & 1 deletion UnboundLib/Utils/UI/InfoPopup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using UnityEngine;
using UnityEngine.UI;

namespace UnboundLib.Utils.UI
namespace UnboundLib
{
[RequireComponent(typeof(VerticalLayoutGroup), typeof(ContentSizeFitter), typeof(CanvasGroup))]
public class InfoPopup : Image
Expand Down
2 changes: 1 addition & 1 deletion UnboundLib/Utils/UI/ModalHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using UnityEngine.Events;
using UnityEngine.UI;

namespace UnboundLib.Utils.UI
namespace UnboundLib
{
public class ModalHandler : MonoBehaviour
{
Expand Down

0 comments on commit 30dad76

Please sign in to comment.