Initial commit
This commit is contained in:
13
Assets/Resources/Scripts/LevelScriptable.cs
Normal file
13
Assets/Resources/Scripts/LevelScriptable.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
|
||||
[CreateAssetMenu(fileName = "Level", menuName = "ScriptableObjects/Level", order = 1)]
|
||||
public class LevelScriptable : ScriptableObject
|
||||
{
|
||||
public List<Color> rgbList;
|
||||
public List<Color> rgbSaturatedList;
|
||||
public List<int> dotCount;
|
||||
public List<Sprite> displaySprite;
|
||||
public List<string> displayString;
|
||||
}
|
Reference in New Issue
Block a user