Skip to content
Snippets Groups Projects
Select Git revision
  • 607b50ddd827dd57df43116288794084778f2f1e
  • master default
2 results

CSVOutputGrid.cs

Blame
  • user avatar
    Alexis Iakovenko authored
    54933124
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CSVOutputGrid.cs 279 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    public class CSVOutputGrid
    {
    	public string[,] grid;
    	public int linesLength;
    
    	public CSVOutputGrid(string[,] grid, int linesLength)
    	{
    		this.grid = grid;
    		this.linesLength = linesLength;
    	}
    }