Browse Source

定数化

othello
みてるぞ 5 months ago
parent
commit
4bbc5975a7
2 changed files with 11 additions and 2 deletions
  1. +7
    -0
      common_const.py
  2. +4
    -2
      main.py

+ 7
- 0
common_const.py View File

@@ -0,0 +1,7 @@
from pydantic import BaseModel


class CWindow (BaseModel, frozen = True):
WIDTH: int = 1024
HEIGHT: int = 768


+ 4
- 2
main.py View File

@@ -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)



Loading…
Cancel
Save