mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-29 00:40:24 +00:00
11 lines
260 B
Python
11 lines
260 B
Python
"""Compositing stubs."""
|
|
|
|
|
|
class CompositedLayer:
|
|
def __init__(self, display_item=None):
|
|
self.items = []
|
|
if display_item:
|
|
self.items.append(display_item)
|
|
|
|
def add(self, display_item):
|
|
self.items.append(display_item)
|