mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 06:20:07 +08:00
18 lines
266 B
C#
18 lines
266 B
C#
using UnityEngine;
|
|
|
|
public class SampleComponent : MonoBehaviour
|
|
{
|
|
public BasicCounter Counter;
|
|
|
|
void Start()
|
|
{
|
|
Counter = new BasicCounter(5);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
Counter.Increment();
|
|
}
|
|
}
|