Initial commit

This commit is contained in:
2026-05-30 18:28:51 -04:00
commit d78e8d0910
11 changed files with 1337 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// Undead Universal Patch - for patching Rec Room builds
// Copyright (C) 2026 proxnet.dev (@zombieb)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY
using System;
namespace UndeadUniversalPatch.Core.Exceptions;
public class NotRecRoomException : Exception
{
public NotRecRoomException() : base("Not a build of Rec Room") {}
}