mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-20 14:28:17 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
18 lines
361 B
C#
18 lines
361 B
C#
using Steamworks.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Steamworks
|
|
{
|
|
/// <summary>
|
|
/// Gives us a generic way to get the CallbackId of structs
|
|
/// </summary>
|
|
internal interface ICallbackData
|
|
{
|
|
CallbackType CallbackType { get; }
|
|
int DataSize { get; }
|
|
}
|
|
}
|