Skip to content
Snippets Groups Projects
Select Git revision
  • 77800ef98d24cfa3eb82ed00b74c42862ce5e04f
  • master default protected
2 results

Save.cs

Blame
  • Save.cs 269 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    [System.Serializable]
    public class Save
    {
        public Vector3[] UserTransform = new Vector3[2];
        public List<Vector3[]> Blocks = new();
        public List<Vector3[]> BlockAnchors = new();
    }