9 lines
127 B
C#
9 lines
127 B
C#
using System;
|
|
namespace TechbloxModdingAPI.Players
|
|
{
|
|
public enum PlayerType
|
|
{
|
|
Local,
|
|
Remote
|
|
}
|
|
}
|