Files
2026-03-04 10:03:45 +08:00

12 lines
223 B
C#

namespace Steamworks
{
public enum EPlayerResult_t
{
k_EPlayerResultFailedToConnect = 1,
k_EPlayerResultAbandoned = 2,
k_EPlayerResultKicked = 3,
k_EPlayerResultIncomplete = 4,
k_EPlayerResultCompleted = 5
}
}