Project rename and restructure

This commit is contained in:
Eden Kirin
2023-03-25 13:21:07 +01:00
commit 0041b7d43e
21 changed files with 1328 additions and 0 deletions

10
hopper/errors.py Normal file
View File

@ -0,0 +1,10 @@
class BaseError(Exception):
...
class PositionOutOfBounds(BaseError):
...
class Collision(BaseError):
...