(client) feat:添加Tick接口及时钟控制
This commit is contained in:
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