12 lines
223 B
C#
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
|
|
}
|
|
}
|