10 lines
224 B
C#
10 lines
224 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName="New CourseList", menuName="CourseList")]
|
|
public class CourseList : ScriptableObject
|
|
{
|
|
public Course[] courses;
|
|
}
|