TechbloxModdingAPI/GamecraftModdingAPI/Players/PlayerType.cs

10 lines
128 B
C#
Raw Normal View History

2020-05-12 00:30:16 +00:00
using System;
namespace GamecraftModdingAPI.Players
{
public enum PlayerType
{
Local,
Remote
}
}