27 lines
542 B
C#
27 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using GTANetworkAPI;
|
|
using GTANetworkMethods;
|
|
using reallife_gamemode.Model;
|
|
|
|
/**
|
|
* @overview Life of German Reallife - Event Spawn (Spawn.cs)
|
|
* @author VegaZ
|
|
* @copyright (c) 2008 - 2018 Life of German
|
|
*/
|
|
|
|
namespace reallife_gamemode.Server.Events
|
|
{
|
|
public class Spawn : Script
|
|
{
|
|
|
|
[ServerEvent(GTANetworkAPI.Event.PlayerSpawn)]
|
|
public void OnPlayerSpawn(Client player)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|