17 lines
225 B
C#
17 lines
225 B
C#
using System;
|
|
|
|
public struct ovrAvatarTextureAssetData
|
|
{
|
|
public ovrAvatarTextureFormat format;
|
|
|
|
public uint sizeX;
|
|
|
|
public uint sizeY;
|
|
|
|
public uint mipCount;
|
|
|
|
public ulong textureDataSize;
|
|
|
|
public IntPtr textureData;
|
|
}
|