2021-03-10 14:48:29 +01:00
|
|
|
|
using System;
|
2020-08-18 14:29:13 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Client.StationEvents.Managers
|
2020-08-18 14:29:13 +02:00
|
|
|
|
{
|
|
|
|
|
|
public interface IStationEventManager
|
|
|
|
|
|
{
|
2020-12-23 16:59:50 +01:00
|
|
|
|
public IReadOnlyList<string> StationEvents { get; }
|
2020-08-18 14:29:13 +02:00
|
|
|
|
public void Initialize();
|
|
|
|
|
|
public event Action OnStationEventsReceived;
|
2020-08-25 17:18:32 +02:00
|
|
|
|
public void RequestEvents();
|
2020-08-18 14:29:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|