13 lines
201 B
C#
13 lines
201 B
C#
namespace Valve.VR
|
|
{
|
|
public enum EVRScreenshotError
|
|
{
|
|
None = 0,
|
|
RequestFailed = 1,
|
|
IncompatibleVersion = 100,
|
|
NotFound = 101,
|
|
BufferTooSmall = 102,
|
|
ScreenshotAlreadyInProgress = 108
|
|
}
|
|
}
|