20 lines
382 B
C#
20 lines
382 B
C#
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 readonly ILogger logger;
|
|
|
|
public BaseScript()
|
|
{
|
|
logger = LogManager.GetLogger(this.GetType());
|
|
}
|
|
}
|
|
}
|