mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 10:37:05 +02:00
17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
using Robust.Client.Input;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
internal interface IClydeAudioInternal : IClydeAudio
|
|
{
|
|
bool InitializePostWindowing();
|
|
void FrameProcess(FrameEventArgs eventArgs);
|
|
void Shutdown();
|
|
}
|
|
}
|