13 lines
261 B
C#
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);
|
|
}
|
|
}
|