diff --git a/.github/workflows/submodule.yml b/.github/workflows/submodule.yml index cb4d993..e17b536 100644 --- a/.github/workflows/submodule.yml +++ b/.github/workflows/submodule.yml @@ -51,7 +51,7 @@ jobs: - name: Inspect code uses: muno92/resharper_inspectcode@v1 with: - solutionPath: ./'${{ env.PROJECT_NAME }}.sln' + solutionPath: ./${{ env.PROJECT_NAME }}.sln solutionWideAnalysis: false minimumReportSeverity: warning minimumSeverity: warning diff --git a/Assets/NewBehaviourScript.cs b/Assets/NewBehaviourScript.cs index 9c593ac..397a233 100644 --- a/Assets/NewBehaviourScript.cs +++ b/Assets/NewBehaviourScript.cs @@ -1,19 +1,6 @@ -using System.Collections; -using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { private int myInt = 5; - // Start is called before the first frame update - void Start() - { - - } - - // Update is called once per frame - void Update() - { - - } }