LevelData

This commit is contained in:
2023-06-16 09:51:16 +03:00
parent 36f90ddd64
commit d9fbd99072
7 changed files with 100 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Level
{
[System.Serializable]
public class LevelData
{
public LayoutCell.LayoutCellData[][] layout;
public int width;
public int height;
}
}