15 lines
243 B
C#
15 lines
243 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class PlatformInitialize
|
|
{
|
|
public readonly PlatformInitializeResult Result;
|
|
|
|
public PlatformInitialize(IntPtr o)
|
|
{
|
|
Result = CAPI.ovr_PlatformInitialize_GetResult(o);
|
|
}
|
|
}
|
|
}
|