Skip to content

Instantly share code, notes, and snippets.

@FractalWire
FractalWire / Map chunker.py
Last active February 5, 2019 21:08
A map generator for roguelike games
import curses
import numpy as np
import random
from enum import Enum
from typing import Any, List, Tuple, Callable
import time
MAP_WIDTH = 80
MAP_HEIGHT = 25