[BetterShadowClone] Throwing on git before i completely overcomplicate and have to revert lmao

This commit is contained in:
NotAKidoS 2024-02-03 02:12:40 -06:00
parent d155ea546e
commit 5ee7dca50b
18 changed files with 1697 additions and 0 deletions

View file

@ -0,0 +1,11 @@
using System;
namespace NAK.BetterShadowClone;
public interface IShadowClone : IDisposable
{
bool IsValid { get; }
bool Process();
void RenderForShadow();
void RenderForUiCulling();
}