mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
15 lines
372 B
C#
15 lines
372 B
C#
|
using System;
|
|||
|
|
|||
|
namespace APITestMod;
|
|||
|
|
|||
|
// TODO: document
|
|||
|
public 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, bool receiveLocally = false);
|
|||
|
void RegisterHandler<T>(string messageType, Action<uint, T> handler);
|
|||
|
}
|