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);
|
|
}
|
|
}
|