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,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
[CreateAssetMenu(fileName="New Course", menuName="course")]
public class Course : ScriptableObject
{
public string title;
public string description;
public Sprite thumbnail;
public int progress;
public Sprite[] images;
public VideoClip[] videos;
}