5 lines
84 B
Python
5 lines
84 B
Python
|
class Vec2:
|
||
|
def __init__(self, x=0, y=0):
|
||
|
self.x = x
|
||
|
self.y = y
|