mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
15 lines
485 B
C#
15 lines
485 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Map;
|
|
|
|
namespace Robust.Client.Map
|
|
{
|
|
internal interface IClientMapManager : IMapManagerInternal
|
|
{
|
|
// Two methods here, so that new grids etc can be made BEFORE entities get states applied,
|
|
// but old ones can be deleted after.
|
|
void ApplyGameStatePre(GameStateMapData? data, EntityState[]? entityStates);
|
|
void ApplyGameStatePost(GameStateMapData? data);
|
|
}
|
|
}
|