14 lines
135 B
C++
14 lines
135 B
C++
|
#include "state.h"
|
||
|
|
||
|
int State::size = 19;
|
||
|
|
||
|
State::State( void )
|
||
|
{
|
||
|
//does nothing yet
|
||
|
}
|
||
|
|
||
|
State generateState (SDL_Surface *board)
|
||
|
{
|
||
|
|
||
|
}
|