|
- import pygame
- from pygame.locals import *
- import sys
-
- from common_const import *
-
-
- class Othello:
- # 盤の色
- BOARD_COLOUR: tuple = (0, 128, 0)
-
- def __init__ (
- self,
- screen: pygame.Surface) \
- -> None:
- self.screen = screen
-
- # オセロ中?
- self.othello_mode = False
-
- def redraw (self) -> None:
- if self.othello_mode:
- pass
|