This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Runtime.CompilerServices; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| using JetBrains.Annotations; | |
| using Unity.Collections.LowLevel.Unsafe; | |
| /// <summary> | |
| /// Simple Single-Producer Single-Consumer (SPSC) FIFO queue with batching support. | |
| /// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class SimpleMazeGenerator : MonoBehaviour | |
| { | |
| public GameObject WallPrefab; | |
| public GameObject FloorPrefab; | |
| public GameObject CenterPrefab; |