Add RefuseCollector Job and other misc

This commit is contained in:
Siga
2020-04-04 18:33:20 +02:00
parent 69a4ab5d22
commit c871805430
24 changed files with 2251 additions and 104 deletions

View File

@@ -13,9 +13,9 @@ using ReallifeGamemode.Server.Common;
namespace ReallifeGamemode.Server.Core.Managers
{
class HouseManager : Script
public class HouseManager : Script
{
private readonly Dictionary<int, IMarker> houseMarkers = new Dictionary<int, IMarker>();
public static readonly Dictionary<int, IMarker> houseMarkers = new Dictionary<int, IMarker>();
private readonly Dictionary<int, ITextLabel> houseLabels = new Dictionary<int, ITextLabel>();
private readonly Dictionary<int, IColShape> houseColShapes = new Dictionary<int, IColShape>();
private readonly Dictionary<int, IBlip> houseBlips = new Dictionary<int, IBlip>();