forked from Eauldane/SnowcloakClient
Initial
This commit is contained in:
13
Penumbra.Api/Api/Meta.cs
Normal file
13
Penumbra.Api/Api/Meta.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Penumbra.Api.Api;
|
||||
|
||||
/// <summary> API methods pertaining to current metadata manipulations. </summary>
|
||||
public interface IPenumbraApiMeta
|
||||
{
|
||||
/// <returns>A base64 encoded, zipped json-string with a prepended version-byte of the current manipulations
|
||||
/// in the collection currently associated with the player.</returns>
|
||||
public string GetPlayerMetaManipulations();
|
||||
|
||||
/// <returns>A base64 encoded, zipped json-string with a prepended version-byte of the current manipulations
|
||||
/// in the given collection applying to the given game object or the default collection if it does not exist.</returns>
|
||||
public string GetMetaManipulations(int gameObjectIdx);
|
||||
}
|
Reference in New Issue
Block a user