mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
Update TEngineHotUpdate
Update TEngineHotUpdate
This commit is contained in:
43
TEngineHotUpdate/GameApp.cs
Normal file
43
TEngineHotUpdate/GameApp.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace TEngineHotUpdate
|
||||
{
|
||||
public class GameLogicMain
|
||||
{
|
||||
public static void Init()
|
||||
{
|
||||
Debug.Log("Init");
|
||||
}
|
||||
|
||||
public static void Start()
|
||||
{
|
||||
Debug.Log("Start");
|
||||
}
|
||||
|
||||
public static void Update()
|
||||
{
|
||||
Debug.Log("Update");
|
||||
}
|
||||
|
||||
public static void LateUpdate()
|
||||
{
|
||||
Debug.Log("LateUpdate");
|
||||
}
|
||||
|
||||
public static void Destroy()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static void OnApplicationPause(bool isPause)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user