From de7947500c99a4fbc4d129023dd9760305381c22 Mon Sep 17 00:00:00 2001 From: wcb_dell <497649129@qq.com> Date: Thu, 22 Oct 2020 19:49:45 +0800 Subject: [PATCH] delete all names --- source/component/map.py | 2 -- source/component/plant.py | 2 -- source/component/zombie.py | 2 -- source/state/level.py | 2 -- source/state/screen.py | 2 -- source/tool.py | 1 + 6 files changed, 1 insertion(+), 10 deletions(-) diff --git a/source/component/map.py b/source/component/map.py index 0de0eda..40d08cf 100644 --- a/source/component/map.py +++ b/source/component/map.py @@ -1,5 +1,3 @@ -__author__ = 'marble_xu' - import random import pygame as pg from .. import tool diff --git a/source/component/plant.py b/source/component/plant.py index 684065b..30b68cc 100644 --- a/source/component/plant.py +++ b/source/component/plant.py @@ -1,5 +1,3 @@ -__author__ = 'marble_xu' - import random import pygame as pg from .. import tool diff --git a/source/component/zombie.py b/source/component/zombie.py index 73780f1..dd9835c 100644 --- a/source/component/zombie.py +++ b/source/component/zombie.py @@ -1,5 +1,3 @@ -__author__ = 'marble_xu' - import pygame as pg from .. import tool from .. import constants as c diff --git a/source/state/level.py b/source/state/level.py index eda3bbe..6ef4e9b 100644 --- a/source/state/level.py +++ b/source/state/level.py @@ -1,5 +1,3 @@ -__author__ = 'marble_xu' - import os import json import pygame as pg diff --git a/source/state/screen.py b/source/state/screen.py index a624460..d53f548 100644 --- a/source/state/screen.py +++ b/source/state/screen.py @@ -1,5 +1,3 @@ -__author__ = 'marble_xu' - import pygame as pg from .. import tool from .. import constants as c diff --git a/source/tool.py b/source/tool.py index 0fdf565..52b179a 100644 --- a/source/tool.py +++ b/source/tool.py @@ -74,6 +74,7 @@ class Control(): self.mouse_click[0], _, self.mouse_click[1] = pg.mouse.get_pressed() print('pos:', self.mouse_pos, ' mouse:', self.mouse_click) + def main(self): while not self.done: self.event_loop()