This repository has been archived on 2019-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
pacman2/engine/vec2.py

5 lines
84 B
Python

class Vec2:
def __init__(self, x=0, y=0):
self.x = x
self.y = y