mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
19 lines
295 B
C#
19 lines
295 B
C#
using UnityEngine;
|
|
|
|
namespace UnityEditor.U2D.Animation
|
|
{
|
|
|
|
#if ENABLE_ENTITIES
|
|
|
|
[CustomEditor(typeof(SpriteSkinEntity))]
|
|
[CanEditMultipleObjects]
|
|
class SpriteSkinEntityEditor : Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
|
|
}
|
|
}
|
|
#endif
|
|
|
|
}
|