Add modal interface

pull/37/head
HumanoidSandvichDispenser 2024-06-04 14:06:53 -07:00
parent 4f53411d91
commit 51e1ebd033
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
1 changed files with 6 additions and 0 deletions

6
UI/IModal.cs 100644
View File

@ -0,0 +1,6 @@
namespace SupaLidlGame.UI;
public interface IModal
{
public void HideModal();
}