mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
11 lines
No EOL
204 B
C#
11 lines
No EOL
204 B
C#
using System;
|
|
|
|
namespace NAK.BetterShadowClone;
|
|
|
|
public interface IShadowClone : IDisposable
|
|
{
|
|
bool IsValid { get; }
|
|
bool Process();
|
|
void RenderForShadow();
|
|
void RenderForUiCulling();
|
|
} |