Files
TEngine/Assets/HotFix/GameHotfixEntry.cs
ALEXTANG a3fde33dfc HotFix demo
HotFix demo
2022-08-29 15:51:51 +08:00

21 lines
310 B
C#

using System.Collections;
using System.Collections.Generic;
using TEngine.Runtime;
namespace HotFix
{
public class GameHotfixEntry
{
public static void Start()
{
Log.Debug("HotFix.GameHotfixEntry");
}
void Update()
{
}
}
}