-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIsExternalInit.cs
More file actions
19 lines (17 loc) · 809 Bytes
/
IsExternalInit.cs
File metadata and controls
19 lines (17 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RogueLegacyRandomizer - IsExternalInit.cs
// Last Modified 2023-10-25 2:41 PM
//
// This project is based on the modified disassembly of Rogue Legacy's engine, with permission to do so by its
// original creators. Therefore, the former creators' copyright notice applies to the original disassembly.
//
// Original Source - © 2011-2018, Cellar Door Games Inc.
// Rogue Legacy™ is a trademark or registered trademark of Cellar Door Games Inc. All Rights Reserved.
// ReSharper disable once CheckNamespace
namespace System.Runtime.CompilerServices;
public class IsExternalInit
{
/*
* Literally the only reason this class exists, is so I can use 'init' in records and the compiler doesn't yell at
* me for using C# 9+ features that I could otherwise use. ¯\_(ツ)_/¯
*/
}