using System; using System.Collections.Generic; using System.Text; using GTANetworkAPI; using Microsoft.Extensions.Logging; using ReallifeGamemode.Server.Log; namespace ReallifeGamemode.Server { public abstract class BaseScript : Script { protected static ILogger logger { get; private set; } public BaseScript() { logger = LogManager.GetLogger(this.GetType()); } } }