using System.Collections; using System.Collections.Generic; using UnityEngine; public struct BlockBase { public uint code; public uint value; public BlockBase(uint code, uint value) { this.code = code; this.value = value; } }