Update code.js
This commit is contained in:
parent
579d92b893
commit
a751e79b29
17
src/code.js
17
src/code.js
@ -1,13 +1,26 @@
|
||||
board =
|
||||
var board =
|
||||
[
|
||||
[0, 0, 0],
|
||||
[0, 0, 0],
|
||||
[0, 0, 0]
|
||||
];
|
||||
|
||||
ptm = 1;
|
||||
var ptm = 1;
|
||||
|
||||
function move(id)
|
||||
{
|
||||
var charater = "";
|
||||
|
||||
if (ptm === 1)
|
||||
{
|
||||
charater = "X"
|
||||
}
|
||||
else if (ptm === 2)
|
||||
{
|
||||
charater = "O"
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user