HotFix demo

HotFix demo
This commit is contained in:
ALEXTANG
2022-08-29 15:51:51 +08:00
parent 2c7367fab7
commit a3fde33dfc
5 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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()
{
}
}
}