Files
BoneSync/Facepunch.Steamworks/Callbacks/ICallbackData.cs
2025-02-25 12:58:41 +02:00

17 lines
380 B
C#

using Facepunch.Steamworks.Data;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
namespace Facepunch.Steamworks
{
/// <summary>
/// Gives us a generic way to get the CallbackId of structs
/// </summary>
internal interface ICallbackData
{
CallbackType CallbackType { get; }
int DataSize { get; }
}
}