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
using System; | |
namespace _1.Tic_Tac_Toe | |
{ | |
public class TicTacToe | |
{ | |
public char[,] gameBoard = new char[3,3]; | |
public char choice; | |
public int player = 0; |
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
#include <stdio.h> | |
#include <math.h> | |
#include <iostream> | |
#include <GL/glut.h> | |
using namespace std; | |
int pntX1, pntY1, pntX2, pntY2, choice = 0; | |
double x, y, length, xinc, yinc; | |
int round(double d) |
NewerOlder