1
0
mirror of https://github.com/d3vyce/Python-Game.git synced 2025-04-05 05:10:48 +02:00

Change type ID

This commit is contained in:
d3vyce 2022-07-31 20:15:15 +02:00
parent c74dfcc1a3
commit 928aaff2cb

@ -2,9 +2,8 @@ import numpy as np
import random import random
# 0 = AIR # 0 = AIR
# 1 = SNAKE # 1 = WALL
# 2 = WALL # 2 = APPLE
# 3 = APPLE
def init_level(heigh, width): def init_level(heigh, width):
return np.zeros((heigh, width)) return np.zeros((heigh, width))