(self)
| 2941 | # this is the word "workshop" below the brain logo. |
| 2942 | class LogoLowerLabel: |
| 2943 | def __init__(self): |
| 2944 | self.label = pyglet.text.Label( |
| 2945 | 'Workshop', |
| 2946 | font_size=calc_fontsize(11), bold = True, |
| 2947 | color=cfg.COLOR_TEXT, |
| 2948 | x=field.center_x, y=field.center_y - scale_to_height(27), |
| 2949 | anchor_x='center', anchor_y='center') |
| 2950 | def draw(self): |
| 2951 | self.label.draw() |
| 2952 |
nothing calls this directly
no test coverage detected