Sokc.exe is windows console application to play sokoban puzzle.
It understands .slc format which stores level configuration. Solution of each
level is written to a log file as you proceed.

To start run

sokc.exe [options] {level_file.slc}

Options:
  -n - narrow tile set. Each square of a level is represented as a single character on a screen.
  -w - wide tile set. Each square of a level is represented as 2 characters on a screen
  -c - use color
  -m - monochrome
  -f file - as you complete level, append solution to a log file.

Keyboard controls (case sensitive):
  Q -- quit game
  g -- enter level number and go directly to level. Allows only to go to the levels that already has been solved (as read from .log file)
  > -- goto next level (if current has been solved)
  < -- return to previous level
  R -- restart current level
  w -- change between narrow and wide modes
  c -- change between color and monochrome output
  u -- undo a move (goes all the way to the beginning)
  up, left, down, right arrows -- move character
  

