* -GetStationEventsMsg -Fixed random in events help * Don't send on connect * Delete StationEvents on disconnect * Resolve IClientNetManager when needed * :smilethink: * Remove setter * Removed unused imports * Don't resolve twice * Add Event
14 lines
305 B
C#
14 lines
305 B
C#
#nullable enable
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Content.Client.StationEvents
|
|
{
|
|
public interface IStationEventManager
|
|
{
|
|
public List<string>? StationEvents { get; }
|
|
public void Initialize();
|
|
public event Action OnStationEventsReceived;
|
|
}
|
|
}
|