Files
TEngine/Assets/GameScripts/HotFix/GameBase/BaseClsTemplate.cs
ALEXTANG 6e0785623d GameScripts
GameScripts
2023-04-11 19:58:38 +08:00

16 lines
336 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace GameBase
{
public class BaseClsTemplate<T>
{
protected static T Imp;
/// <summary>
/// Unity工程注册处理函数。
/// </summary>
/// <param name="imp">实现类。</param>
public static void RegisterImp(T imp)
{
Imp = imp;
}
}
}