mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
15 lines
318 B
C#
15 lines
318 B
C#
|
using System;
|
|||
|
|
|||
|
namespace QSB.API;
|
|||
|
|
|||
|
internal interface IQSBAPI
|
|||
|
{
|
|||
|
uint GetLocalPlayerID();
|
|||
|
|
|||
|
void SetCustomData<T>(uint playerId, string key, T data);
|
|||
|
T GetCustomData<T>(uint playerId, string key);
|
|||
|
|
|||
|
void SendMessage<T>(string messageType, T data);
|
|||
|
void RegisterHandler<T>(string messageType, Action<T> action);
|
|||
|
}
|