obfuz/Samples/MultiObfuscatedAssemblies/Assets/Obfus1/C.cs

15 lines
229 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class C
{
public int x;
// Start is called before the first frame update
public void Run(A a)
{
x = a.x + 1;
}
}