Sandbox

queeshai's test playground

#include 157
bool DEBUG = true;

void configGame()
{
  setNumPlayers( 2 );
  addAiPlayer();
  dontNeedDecks();
}

void beforeStart()
{
}

void afterStart()
{
  debug( "this script is not meant for playing. --queeshai" );
  
  string s = sprintf( "TEST" );
  debug( s );
  
  fogMap();
  //lightFog( getPlayer( 0 ), 0, 0, 1, 2 );
}

void onNewRound()
{
  //fogMap();
}