Files
reallife-gamemode/Server/Events/Update.cs

23 lines
402 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
/**
* @overview Life of German Reallife - Event Update (Update.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Server.Events
{
public class Update : Script
{
[ServerEvent(Event.Update)]
public void OnUpdate()
{
}
}
}