9 lines
194 B
Python
9 lines
194 B
Python
"""
|
|
This is an abstract baseclass for the controls of snake.
|
|
"""
|
|
from abc import ABC, abstractmethod
|
|
|
|
class ControlsBase(ABC):
|
|
@abstractmethod
|
|
def handle_input(self, event):
|
|
pass |