Files
reallife-gamemode/ReallifeGamemode.Server/Events/Update.cs
Lennart Kampshoff a88d5256a8 formatted code
2019-05-05 17:59:11 +02:00

20 lines
384 B
C#

using GTANetworkAPI;
using ReallifeGamemode.Server.Entities;
using ReallifeGamemode.Server.Managers;
using ReallifeGamemode.Server.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Events
{
class Update : Script
{
[ServerEvent(Event.Update)]
public void UpdateEvent()
{
}
}
}