This commit is contained in:
2024-04-23 10:45:45 +02:00
parent 89993829ba
commit f2ae69b28f
16 changed files with 809 additions and 912 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CarData : MonoBehaviour
{
public GameObject playerCar;
private void Awake() {
DontDestroyOnLoad(gameObject);
}
}