22 lines
424 B
C#
22 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.Extensions.Logging;
|
|
using ReallifeGamemode.Server.Core.API;
|
|
using ReallifeGamemode.Server.Log;
|
|
|
|
namespace ReallifeGamemode.Server.Core
|
|
{
|
|
internal abstract class Script
|
|
{
|
|
protected IAPI Api { get; } = Main.API;
|
|
|
|
protected ILogger Log { get; }
|
|
|
|
public Script()
|
|
{
|
|
Log = LogManager.GetLogger(GetType());
|
|
}
|
|
}
|
|
}
|