|
|
@@ -37,11 +37,12 @@ class Main: |
|
|
|
|
|
|
|
# ウィンドゥの初期化 |
|
|
|
pygame.init () |
|
|
|
screen: pygame.Surface = pygame.display.set_mode ((Window.WIDTH, Window.HEIGHT)) |
|
|
|
screen: pygame.Surface = pygame.display.set_mode ( |
|
|
|
(CWindow.WIDTH, CWindow.HEIGHT)) |
|
|
|
|
|
|
|
# 吹き出し |
|
|
|
balloon = pygame.transform.scale (pygame.image.load ('talking.png'), |
|
|
|
(Window.WIDTH, 384)) |
|
|
|
(CWindow.WIDTH, 384)) |
|
|
|
if goatoh_mode: |
|
|
|
balloon = pygame.transform.flip (balloon, False, True) |
|
|
|
|
|
|
|