Change type ID

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

View File

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