8 lines
207 B
C#
8 lines
207 B
C#
namespace Barotrauma.LuaCs;
|
|
|
|
public interface IClientLoggerService : IReusableService
|
|
{
|
|
void AddToGUIUpdateList();
|
|
void ShowErrorOverlay(string message, float time = 5f, float duration = 1.5f);
|
|
}
|