* Enable nullability in Content.Client * Remove #nullable enable * Merge fixes * Remove Debug.Assert * Merge fixes * Fix build * Fix build
14 lines
333 B
C#
14 lines
333 B
C#
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();
|
|
}
|
|
}
|