6:81a2208f13e4 | 7:e336d6afc5a6 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module containing stubs for API generation of the 'terminalio' module. | |
8 """ | |
9 | |
10 FONT = object() | |
11 | |
12 class Terminal(): | |
13 def __init__(self, tilegrid, font): | |
14 pass | |
15 | |
16 def write(self, buf): | |
17 pass | |
18 |