mirror of
https://github.com/tetreum/brickcraft.git
synced 2026-02-21 10:50:18 -06:00
16 lines
392 B
C#
16 lines
392 B
C#
using UnityEngine;
|
|
|
|
namespace Brickcraft
|
|
{
|
|
public class StudInfo
|
|
{
|
|
public Vector3 center;
|
|
public Vector2Int gridPosition = new Vector2Int();
|
|
public Vector2Int gridDimensions = new Vector2Int();
|
|
|
|
public override string ToString() {
|
|
return string.Format("C: {0} | P: {1} | G: {2}", center, gridPosition, gridDimensions);
|
|
}
|
|
}
|
|
}
|