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

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
bin/*
obj/*
Properties/*
*.csproj
*.user
!.gitkeep

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!");
}
}
}

5
meta.xml Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<meta>
<info name="reallife-gamemode" type="script" />
<script src="reallife-gamemode.dll" />
</meta>