TechbloxModdingAPI/GamecraftModdingAPI/Players/PlayerType.cs

10 lines
128 B
C#
Raw Normal View History

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