Files
Continentis/Assets/OtherPlugins/NaughtyAttributes/Scripts/Test/_NaughtyComponent.cs

19 lines
249 B
C#
Raw Normal View History

2026-03-20 11:56:50 -04:00
using System;
2025-10-23 00:49:44 -04:00
using UnityEngine;
namespace NaughtyAttributes.Test
{
public class _NaughtyComponent : MonoBehaviour
{
}
2026-03-20 11:56:50 -04:00
[Serializable]
2025-10-23 00:49:44 -04:00
public class MyClass
{
}
2026-03-20 11:56:50 -04:00
[Serializable]
2025-10-23 00:49:44 -04:00
public struct MyStruct
{
}
2026-03-20 11:56:50 -04:00
}