Skip to content

Instantly share code, notes, and snippets.

@sdomenici009
Created December 2, 2015 07:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdomenici009/b774cada82c03950aed2 to your computer and use it in GitHub Desktop.
Save sdomenici009/b774cada82c03950aed2 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
[System.Serializable]
public class TileData
{
[System.Serializable]
public struct rowData
{
public Vector2[] row;
}
public rowData[] rows = new rowData[10];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment