Files
tbd-station-14/Content.Client/Interfaces/IClientGameTicker.cs
2019-07-14 23:02:45 +02:00

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