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