mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
11 lines
No EOL
260 B
C#
11 lines
No EOL
260 B
C#
namespace NAK.BetterShadowClone;
|
|
|
|
public interface ITransformHider : IDisposable
|
|
{
|
|
bool IsActive { get; set; }
|
|
bool IsValid { get; }
|
|
bool Process();
|
|
bool PostProcess();
|
|
void HideTransform(bool forced = false);
|
|
void ShowTransform();
|
|
} |