(self)
| 2929 | # this is the word "brain" above the brain logo. |
| 2930 | class LogoUpperLabel: |
| 2931 | def __init__(self): |
| 2932 | self.label = pyglet.text.Label( |
| 2933 | 'Brain', # I think we shouldn't translate the program name. Yes? |
| 2934 | font_size=calc_fontsize(11), bold = True, |
| 2935 | color=cfg.COLOR_TEXT, |
| 2936 | x=field.center_x, y=field.center_y + scale_to_height(30), |
| 2937 | anchor_x='center', anchor_y='center') |
| 2938 | def draw(self): |
| 2939 | self.label.draw() |
| 2940 |
nothing calls this directly
no test coverage detected