MichaelVertin / AIChess

AI Chess Game
0 stars 0 forks source link

Fixed Threading Bug #29

Closed MichaelVertin closed 8 months ago

MichaelVertin commented 8 months ago

Created a Command data structure for UserPlayer. Added commands stack to store commands that user inputted. When the user clicks a button, a command is created and stored on the stack.

All commands are executed in a single unity routine function, in order of the stack.

MichaelVertin commented 8 months ago

Should be Queue instead of Stack.