mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-19 01:27:55 +08:00
separate Bep5 and Bep6 support. Fix enums not backed by ints.
This commit is contained in:
@ -13,6 +13,14 @@ using UnityExplorer.Helpers;
|
||||
|
||||
namespace UnityExplorer.Tests
|
||||
{
|
||||
internal enum TestByteEnum : byte
|
||||
{
|
||||
One,
|
||||
Two,
|
||||
Three,
|
||||
TwoFiftyFive = 255,
|
||||
}
|
||||
|
||||
public static class StaticTestClass
|
||||
{
|
||||
public static int StaticProperty => 5;
|
||||
@ -28,6 +36,8 @@ namespace UnityExplorer.Tests
|
||||
|
||||
public class TestClass
|
||||
{
|
||||
internal static TestByteEnum testingByte = TestByteEnum.One;
|
||||
|
||||
public string AAALongString = @"1
|
||||
2
|
||||
3
|
||||
|
Reference in New Issue
Block a user