Spawn point system.

Hey we can place spawn points on the map now instead of hardcoding them!
Spawn points are simply invisible bare bones entities.
This commit is contained in:
Pieter-Jan Briers
2019-03-17 15:52:27 +01:00
parent 8aefe6c615
commit e1f6a2bbd5
14 changed files with 147 additions and 2 deletions

View File

@@ -26,6 +26,7 @@ using SS14.Shared.IoC;
using SS14.Shared.Prototypes;
using System;
using Content.Client.UserInterface;
using Content.Shared.GameObjects.Components.Markers;
using SS14.Client.Interfaces.UserInterface;
using SS14.Shared.Log;
@@ -97,6 +98,8 @@ namespace Content.Client
factory.RegisterIgnore("PowerCell");
factory.Register<SharedSpawnPointComponent>();
IoCManager.Register<IClientNotifyManager, ClientNotifyManager>();
IoCManager.Register<ISharedNotifyManager, ClientNotifyManager>();
IoCManager.Register<IClientGameTicker, ClientGameTicker>();