2using System.Runtime.CompilerServices;
6 public static partial class SteamAPI
13 INTERNAL_GetImageSize(imageId, ref size);
19 return INTERNAL_GetImageRGBA(imageId);
22 [MethodImpl(MethodImplOptions.InternalCall)]
23 private static extern void INTERNAL_GetImageSize(
int imageId, ref
Vector2 size);
25 [MethodImpl(MethodImplOptions.InternalCall)]
26 private static extern sbyte[] INTERNAL_GetImageRGBA(
int imageId);
static Vector2 GetImageSize(int imageId)
static sbyte[] GetImageRGBA(int imageId)