mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-05-02 04:57:17 +03:00
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();
|
|
}
|
|
}
|