10 lines
222 B
C#
10 lines
222 B
C#
using System;
|
|
using CitizenFX.Core;
|
|
|
|
namespace Framework.Server.Extensions {
|
|
public static class PlayerExtensions {
|
|
|
|
public static int ServerId(this Player player) => Convert.ToInt32(player.Handle);
|
|
|
|
}
|
|
} |