You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

8 lines
194 B

import pygame
class Stop:
def __init__(self, name, pos) -> None:
self.name = name
self.pos = pos
def __str__(self) -> str:
return f"{self.pos[0]}, {self.pos[1]}"

Powered by TurnKey Linux.