All checks were successful
Code Review / code-review (pull_request) Successful in 10s
27 lines
483 B
C#
27 lines
483 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Hello : MonoBehaviour
|
|
{
|
|
int numberOfUpdates = 0;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
numberOfUpdates = IncreaseCount(numberOfUpdates);
|
|
Debug.Log(numberOfUpdates);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
public int IncreaseCount(int o)
|
|
{
|
|
o++;
|
|
return o;
|
|
}
|
|
}
|