wes-50 -> dev
This commit is contained in:
committed by
Tibe Habils
parent
33bdc1464a
commit
f5689090cd
16
Assets/Courses/Scripts/Course.cs
Normal file
16
Assets/Courses/Scripts/Course.cs
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user