Files
tbd-station-14/Content.Client/Interfaces/IClientGameTicker.cs
2019-04-15 21:11:38 -06:00

11 lines
209 B
C#

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