This commit is contained in:
Crizomb 2024-12-10 22:32:20 +01:00
parent 3a7ce962e7
commit 058e61a4fd
38 changed files with 3915 additions and 363 deletions

View file

@ -0,0 +1,7 @@
using UnityEngine;
public class Checkpoint : MonoBehaviour
{
[SerializeField] int index;
[HideInInspector] public int Index => index;
}