wes-50 -> dev

This commit is contained in:
Jerome Coudron
2023-03-05 15:52:00 +00:00
committed by Tibe Habils
parent 33bdc1464a
commit f5689090cd
36 changed files with 1110 additions and 156 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName="New CourseList", menuName="CourseList")]
public class CourseList : ScriptableObject
{
public Course[] courses;
}