Files
tbd-station-14/Content.Client/Interfaces/IClientGameTicker.cs
Pieter-Jan Briers 845d0f9182 We have a lobby! (#127)
It's shoddy as hell but it works for our purposes.
2018-11-25 19:04:49 +01:00

11 lines
207 B
C#

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