2020-01-03 01:43:38 +01:00

8 lines
166 B
Python

import random
TERRAIN_TYPES = [0, 1, 2, 3]
def generate_map(x_len, y_len):
return [[random.choice(TERRAIN_TYPES) for y in range(y_len)] for x in range(x_len)]