Initial commit on #develop

This commit is contained in:
VegaZ
2018-09-13 13:10:20 +02:00
parent bac16e7c2a
commit 1bab255707
3 changed files with 25 additions and 0 deletions

14
Main.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using GTANetworkAPI;
namespace reallife_gamemode
{
public class Main : Script
{
[ServerEvent(Event.ResourceStart)]
public void OnResourceStart()
{
NAPI.Util.ConsoleOutput("reallife-gamemode resource loaded!");
}
}
}