mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 10:07:58 +03:00
11 lines
209 B
C#
11 lines
209 B
C#
using Robust.Client;
|
|
|
|
namespace Content.Client.Interfaces
|
|
{
|
|
public interface IClientGameTicker
|
|
{
|
|
void Initialize();
|
|
void FrameUpdate(RenderFrameEventArgs renderFrameEventArgs);
|
|
}
|
|
}
|