15 lines
350 B
C#
15 lines
350 B
C#
#nullable enable
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Content.Client.StationEvents
|
|
{
|
|
public interface IStationEventManager
|
|
{
|
|
public IReadOnlyList<string> StationEvents { get; }
|
|
public void Initialize();
|
|
public event Action OnStationEventsReceived;
|
|
public void RequestEvents();
|
|
}
|
|
}
|