14 lines
289 B
C#
14 lines
289 B
C#
using System;
|
|
using GTANetworkAPI;
|
|
|
|
namespace reallife_gamemode
|
|
{
|
|
public class Main : Script
|
|
{
|
|
[ServerEvent(Event.ResourceStart)]
|
|
public void OnResourceStart()
|
|
{
|
|
NAPI.Util.ConsoleOutput("reallife-gamemode resource loaded!");
|
|
}
|
|
}
|
|
} |