Skip to content

Instantly share code, notes, and snippets.

@fffej
Created May 7, 2010 18:01
Show Gist options
  • Save fffej/393784 to your computer and use it in GitHub Desktop.
Save fffej/393784 to your computer and use it in GitHub Desktop.
data State = State {
density :: Grid
, previousDensity :: Grid
, velocity :: (Grid,Grid)
, previousVelocity :: (Grid,Grid)
, mousePoint :: IORef (Int,Int)
, oldMousePoint :: IORef (Int,Int)
, leftDown :: IORef Bool
, rightDown :: IORef Bool
, drawVel :: IORef Bool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment