Files
crystall-punk-14/Content.Client/Interfaces/IClientGameTicker.cs

13 lines
261 B
C#
Raw Normal View History

using Content.Client.UserInterface;
using Robust.Client;
2019-08-04 01:08:55 +02:00
using Robust.Shared.Timing;
namespace Content.Client.Interfaces
{
public interface IClientGameTicker
{
void Initialize();
2019-08-04 01:08:55 +02:00
void FrameUpdate(FrameEventArgs FrameEventArgs);
}
}