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