|
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
[CreateAssetMenu(fileName = "NewLevel", menuName = "Vegetable Game/Level Data")]
|
|
public class LevelData : ScriptableObject
|
|
{
|
|
// Pastikan variabel ini namanya benar dan bertipe List
|
|
public List<VegetableData> sayurDiChapterIni;
|
|
} |