Ryan Henery

An implementation of a simple 2D Verlet Integration physics engine.
Customisation settings are in the settings.hs file.

To run:
    cabal run

    or

    ghc -threaded -O3 -outputdir./others Main.hs

-threaded	allows for multithreaded and far better performance
-O3		is an optimisation flag which increases compile time but outputs a far more efficient program
-outputdir	gives a location for all temporary .hi and .o files used when compiling (not necessary but it makes the output folder much nicer)


This command is also in the 'run.bat' file I included, which compiles and runs automatically. It can be foud in the 2DPhysics.zip file, along with a pre-compiled Main.exe, glut32.dll, and some videos of what it should look like.