123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace KairoEngine.VoxelBuildingSystem
- {
- public struct VoxelBuildData
- {
- public Vector3Int pos;
- public int buildingIndex;
- public VoxelBuildData(Vector3Int pos, int buildingIndex = 0)
- {
- this.pos = pos;
- this.buildingIndex = buildingIndex;
- }
- }
- }
|