10 lines
260 B
C#
10 lines
260 B
C#
using Sirenix.OdinInspector.Editor;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Unity.Netcode;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
[CustomEditor(typeof(NetworkBehaviour), true)]
|
|
public class OdinNetworkBehaviourEditor : OdinEditor { }
|