12 lines
245 B
C#
12 lines
245 B
C#
using Content.Client.UserInterface;
|
|
using Robust.Client;
|
|
|
|
namespace Content.Client.Interfaces
|
|
{
|
|
public interface IClientGameTicker
|
|
{
|
|
void Initialize();
|
|
void FrameUpdate(RenderFrameEventArgs renderFrameEventArgs);
|
|
}
|
|
}
|