17 lines
380 B
C#
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; }
|
|
}
|
|
} |