20 lines
272 B
Python
20 lines
272 B
Python
from enum import Enum
|
|
|
|
|
|
class CatchStatus(Enum):
|
|
CNone = 0
|
|
CTake = 1
|
|
CPress = 2
|
|
CShake = 3
|
|
|
|
class catch:
|
|
def __init__(self, x, y, width, height, angle, color):
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
pass
|
|
|
|
|
|
def take_bag(self):
|
|
return True |