11 lines
180 B
C#
11 lines
180 B
C#
namespace Steamworks
|
|
{
|
|
public enum EP2PSend
|
|
{
|
|
k_EP2PSendUnreliable = 0,
|
|
k_EP2PSendUnreliableNoDelay = 1,
|
|
k_EP2PSendReliable = 2,
|
|
k_EP2PSendReliableWithBuffering = 3
|
|
}
|
|
}
|