From a448ece73e6123b76c7a259e24f44bbd5a404e16 Mon Sep 17 00:00:00 2001 From: Chipmunk <65827213+ChipmunkMC@users.noreply.github.com> Date: Sun, 19 Jan 2025 21:30:40 -0500 Subject: [PATCH] Add missing cosmetic methods to IInnerPlayerControl --- .../Net/Inner/Objects/IInnerPlayerControl.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/Impostor.Api/Net/Inner/Objects/IInnerPlayerControl.cs b/src/Impostor.Api/Net/Inner/Objects/IInnerPlayerControl.cs index 9f10fd5..3cf9eaf 100644 --- a/src/Impostor.Api/Net/Inner/Objects/IInnerPlayerControl.cs +++ b/src/Impostor.Api/Net/Inner/Objects/IInnerPlayerControl.cs @@ -70,6 +70,22 @@ namespace Impostor.Api.Net.Inner.Objects /// Task that must be awaited. ValueTask SetSkinAsync(string skinId); + /// + /// Sets the visor of the current . + /// Visible to all players. + /// + /// A visor for the player. + /// Task that must be awaited. + ValueTask SetVisorAsync(string visorId); + + /// + /// Sets the nameplate of the current . + /// Visible to all players. + /// + /// A nameplate for the player. + /// Task that must be awaited. + ValueTask SetNamePlateAsync(string nameplateId); + /// /// Send a chat message as the current . /// Visible to all players. -- 2.39.5