Files
tbd-station-14/Content.Client/Interfaces/IClientGameTicker.cs
2019-08-04 01:08:55 +02:00

13 lines
261 B
C#

using Content.Client.UserInterface;
using Robust.Client;
using Robust.Shared.Timing;
namespace Content.Client.Interfaces
{
public interface IClientGameTicker
{
void Initialize();
void FrameUpdate(FrameEventArgs FrameEventArgs);
}
}