注释删除

This commit is contained in:
p57492168 2022-06-21 21:53:24 +08:00
parent 9af11c5cc8
commit 4f68d89ca6
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ class WildFire(object):
def __init__(self):
super().__init__()
self.actions_to_do = []
self.delta_x = (0, 0, 1, -1, ) # 1, 1, -1, -1)
self.delta_y = (1, -1, 0, 0, ) # 1, -1, 1, -1)
self.delta_x = (0, 0, 1, -1, )
self.delta_y = (1, -1, 0, 0, )
@ staticmethod
def _is_valid_index(index, an_array):