Initial commit

This commit is contained in:
2026-06-02 18:57:47 -04:00
commit 59d26a915d
268 changed files with 41240 additions and 0 deletions
@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.TestTools;
namespace BracerLib.Utility
{
[ExcludeFromCoverage]
public class EditorOnlyObject : MonoBehaviour
{
private void Awake()
{
if (Application.isPlaying)
Destroy(gameObject);
}
}
}