Created
January 31, 2016 20:00
-
-
Save ejmurray/75924d130cd96e29055c to your computer and use it in GitHub Desktop.
open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
# author: Ernest | |
# created: 31/01/2016 | |
# | |
""" | |
Description | |
Creation of a TicTacToe game based on the milestone project 1 from the | |
python bootcamp tutorial on Udemy | |
""" | |
# Globals | |
board = [' '] | |
game_state = True | |
announce = '' | |
def reset_board(): | |
""" | |
:return: rests the board | |
""" | |
pass | |
def display_board(): | |
""" | |
:return: | |
""" | |
pass | |
def win_check(): | |
""" | |
:return: | |
""" | |
pass | |
def full_board(): | |
""" | |
:return: | |
""" | |
pass | |
def ask_player(): | |
""" | |
:return: | |
""" | |
pass | |
def player_choice(): | |
""" | |
:return: | |
""" | |
pass | |
def play_game(): | |
""" | |
:return: | |
""" | |
pass | |
play_game() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment