LagCompensatorInspector.cs 372 Bytes
Newer Older
cann-alberto's avatar
cann-alberto committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using UnityEditor;

namespace Mirror
{
    [CustomEditor(typeof(LagCompensator))]
    public class LagCompensatorInspector : Editor
    {
        public override void OnInspectorGUI()
        {
            EditorGUILayout.HelpBox("Preview Component - Feedback appreciated on GitHub or Discord!", MessageType.Warning);
            DrawDefaultInspector();
        }
    }
}