Lay out new client structure

This commit is contained in:
Joscha 2019-05-25 13:12:28 +00:00
parent 6c4bfe2752
commit 7da4bf36d5
21 changed files with 174 additions and 1137 deletions

8
cheuph/message_cache.py Normal file
View file

@ -0,0 +1,8 @@
__all__ = ["RenderedMessageCache"]
class RenderedMessageCache:
"""
This is a cache for RenderedMessage-s. Message-s should not need to be
redrawn every frame (and every in-between calculation).
"""
pass