obfuz/Samples/CustomConfigure/Assets/SymbolObfus/Test1.cs

28 lines
396 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace SymbolObfus
{
public class Test1
{
public class NestedTypeInTest1
{
public int x;
}
public int x;
public int Value { get; set; }
public void Foo()
{
}
public event System.Action<int> OnValueChanged;
}
}