Files
BITFALL/Assets/BITKit/Core/DependencyInjection/IServiceRegister.cs

10 lines
102 B
C#
Raw Normal View History

2023-08-23 01:59:40 +08:00
using System;
namespace BITKit
{
public interface IServiceRegister
{
Type BaseType { get; }
}
}