20 lines
484 B
C#
20 lines
484 B
C#
namespace Unity.XR.PICO.TOBSupport
|
|
{
|
|
public class LargeSpaceQuickModeInfo
|
|
{
|
|
public bool status;
|
|
public int length;
|
|
public int width;
|
|
public int originType;
|
|
|
|
public LargeSpaceQuickModeInfo()
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return
|
|
$"{nameof(status)}: {status}, {nameof(length)}: {length}, {nameof(width)}: {width}, {nameof(originType)}: {originType}";
|
|
}
|
|
}
|
|
} |