mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 05:47:13 +08:00
(client) feat:添加Tick接口及时钟控制
This commit is contained in:
8
Client/Assets/Scripts/Interface/Tick.meta
Normal file
8
Client/Assets/Scripts/Interface/Tick.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f07f237520336f549bf53af368893863
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
11
Client/Assets/Scripts/Interface/Tick/ITick.cs
Normal file
11
Client/Assets/Scripts/Interface/Tick/ITick.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
namespace Cell
|
||||
{
|
||||
public interface ITick
|
||||
{
|
||||
public void Tick()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
2
Client/Assets/Scripts/Interface/Tick/ITick.cs.meta
Normal file
2
Client/Assets/Scripts/Interface/Tick/ITick.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3897d32ba1dc53c4ca44915fd7372a99
|
||||
9
Client/Assets/Scripts/Interface/Tick/ITickPhysics.cs
Normal file
9
Client/Assets/Scripts/Interface/Tick/ITickPhysics.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Cell
|
||||
{
|
||||
public interface ITickPhysics
|
||||
{
|
||||
public void TickPhysics()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 13a5a7579420a2a43bdb17c2f7e586f5
|
||||
9
Client/Assets/Scripts/Interface/Tick/ITickUI.cs
Normal file
9
Client/Assets/Scripts/Interface/Tick/ITickUI.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Cell
|
||||
{
|
||||
public interface ITickUI
|
||||
{
|
||||
public void TickUI()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
2
Client/Assets/Scripts/Interface/Tick/ITickUI.cs.meta
Normal file
2
Client/Assets/Scripts/Interface/Tick/ITickUI.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: db424d45aa0c9dd41b739434758b274a
|
||||
Reference in New Issue
Block a user