public abstract bool UpdateBitmap(uint notificationId,NotificationBitmap texture);
internal static extern NotificationError_t VR_IVRNotifications_CreateNotification(IntPtr instancePtr, ulong ulOverlayHandle, ulong ulUserValue, string strType, string strText, string strCategory, ref NotificationBitmap photo, ref uint notificationId);
public abstract bool NotificationStart(string type,NotificationBitmap texture,ref uint notificationId);
internal static extern bool VR_IVRNotifications_UpdateBitmap(IntPtr instancePtr, uint notificationId, NotificationBitmap texture);
internal static extern bool VR_IVRNotifications_NotificationStart(IntPtr instancePtr, string type, NotificationBitmap texture, ref uint notificationId);
public override bool UpdateBitmap(uint notificationId,NotificationBitmap texture) { CheckIfUsable(); bool result = VRNativeEntrypoints.VR_IVRNotifications_UpdateBitmap(m_pVRNotifications,notificationId,texture); return result; }
public override bool NotificationStart(string type,NotificationBitmap texture,ref uint notificationId) { CheckIfUsable(); notificationId = 0; bool result = VRNativeEntrypoints.VR_IVRNotifications_NotificationStart(m_pVRNotifications,type,texture,ref notificationId); return result; }