Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Container/InjectableAttribute.cs
2026-06-04 14:54:49 +08:00

10 lines
162 B
C#

using System;
namespace FlowScope.Container
{
[AttributeUsage(AttributeTargets.Class)]
public sealed class InjectableAttribute : Attribute
{
}
}