2019-07-14 23:02:45 +02:00
|
|
|
using Content.Client.UserInterface;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Client;
|
2019-08-04 01:08:55 +02:00
|
|
|
using Robust.Shared.Timing;
|
2018-11-25 19:04:49 +01:00
|
|
|
|
|
|
|
|
namespace Content.Client.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IClientGameTicker
|
|
|
|
|
{
|
|
|
|
|
void Initialize();
|
2019-08-04 01:08:55 +02:00
|
|
|
void FrameUpdate(FrameEventArgs FrameEventArgs);
|
2018-11-25 19:04:49 +01:00
|
|
|
}
|
|
|
|
|
}
|