18 lines
273 B
C#
18 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ReallifeGamemode.Server.Core.API;
|
|
|
|
namespace ReallifeGamemode.Server.Core
|
|
{
|
|
internal abstract class Script
|
|
{
|
|
protected IAPI Api { get; } = Main.API;
|
|
|
|
public Script()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|