Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
CodexploreRepo authored Nov 29, 2020
1 parent 3e2ce52 commit 6a22c2c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions 4_Among_Us/codeform.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import pgzrun
import random
FONT_COLOR = (255, 255, 255) #màu RGB
WIDTH = 1300
HEIGHT = 700
CENTER_X = WIDTH / 2
CENTER_Y = HEIGHT / 2
CENTER = (CENTER_X, CENTER_Y)
def draw():
screen.clear()
screen.blit("dark",(0,0))

def update():
pass

def make_impostors(number_of_impostors):
pass

def get_colors_to_create(number_of_impostors):
pass

def create_impostors(colors_to_create):
pass

def layout_impostors(impostors_to_layout):
pass

def animate_impostors(impostors_to_animate):
pass

def handle_game_over():
pass

def on_mouse_down(pos):
pass

def red_impostor_click():
pass

def stop_animations(animations_to_stop):
pass

def display_message(heading_text, sub_heading_text):
pass

pgzrun.go()

0 comments on commit 6a22c2c

Please sign in to comment.