Files
OldThink/Content.Client/Interfaces/IClientGameTicker.cs

11 lines
209 B
C#
Raw Normal View History

using Robust.Client;
namespace Content.Client.Interfaces
{
public interface IClientGameTicker
{
void Initialize();
void FrameUpdate(RenderFrameEventArgs renderFrameEventArgs);
}
}