You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
194 B
Python
9 lines
194 B
Python
5 years ago
|
import random
|
||
|
|
||
|
TERRAIN_TYPES = [0, 1, 2, 3]
|
||
|
|
||
|
|
||
5 years ago
|
def generate_map(dimensions):
|
||
|
x_len, y_len = dimensions
|
||
5 years ago
|
return [[random.choice(TERRAIN_TYPES) for y in range(y_len)] for x in range(x_len)]
|