定数化
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class CWindow (BaseModel, frozen = True):
|
||||
WIDTH: int = 1024
|
||||
HEIGHT: int = 768
|
||||
|
||||
@@ -12,6 +12,7 @@ from playsound import playsound
|
||||
from pygame.locals import *
|
||||
|
||||
from aques import Aques
|
||||
from common_const import *
|
||||
from common_module import CommonModule
|
||||
from talk import Talk
|
||||
from youtube import *
|
||||
@@ -24,11 +25,12 @@ class Main:
|
||||
|
||||
# ウィンドゥの初期化
|
||||
pygame.init ()
|
||||
screen: pygame.Surface = pygame.display.set_mode ((1024, 768))
|
||||
screen: pygame.Surface = pygame.display.set_mode (
|
||||
(CWindow.WIDTH, CWindow.HEIGHT))
|
||||
|
||||
# 吹き出し
|
||||
balloon = pygame.transform.scale (pygame.image.load ('talking.png'),
|
||||
(1024, 384))
|
||||
(CWindow.WIDTH, 384))
|
||||
if goatoh_mode:
|
||||
balloon = pygame.transform.flip (balloon, False, True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user