Files
BITFALL/Assets/BITKit/Core/DependencyInjection/IServiceRegister.cs
CortexCore 4fadd3a530 1
2023-08-27 02:58:19 +08:00

9 lines
107 B
C#

using System;
namespace BITKit
{
public interface IServiceRegister
{
Type BaseType { get; }
}
}