mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
16 lines
293 B
C#
16 lines
293 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TEngine;
|
|
using TEngine.EntityModule;
|
|
|
|
public class TestUpdateCmpt : EntityComponent,IUpdate
|
|
{
|
|
public void Update()
|
|
{
|
|
TLogger.LogInfo("update");
|
|
}
|
|
}
|