Skip to content

Instantly share code, notes, and snippets.

@ejmurray
Created January 31, 2016 20:00
Show Gist options
  • Save ejmurray/75924d130cd96e29055c to your computer and use it in GitHub Desktop.
Save ejmurray/75924d130cd96e29055c to your computer and use it in GitHub Desktop.
open
# 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