23 lines
499 B
C#
23 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using GTANetworkAPI;
|
|
|
|
namespace reallife_gamemode.Server.Events
|
|
{
|
|
public class Login : Script
|
|
{
|
|
[RemoteEvent("OnPlayerLogin")]
|
|
public void OnPlayerLogin(Client player, string username, string password)
|
|
{
|
|
|
|
}
|
|
|
|
[RemoteEvent("OnPlayerRegister")]
|
|
public void OnPlayerRegister(Client player, string username, string password)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|