Skip to content

Instantly share code, notes, and snippets.

View devsleeper's full-sized avatar
👾

David James devsleeper

👾
  • British Columbia, Canada
  • 23:14 (UTC -12:00)
View GitHub Profile
@devsleeper
devsleeper / Recursive Backtrack Maze Algorithm
Created June 1, 2022 04:17
A (Unty) C# Conversion of the C++ Recursive Backtrack Algorithm provided by javid9x
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SimpleMazeGenerator : MonoBehaviour
{
public GameObject WallPrefab;
public GameObject FloorPrefab;
public GameObject CenterPrefab;