# first, ignore everything by default
*

# allow gitignore
!.gitignore

# allow CMakeLists.txt
!CMakeLists.txt

# allow markdown and licenses
!*.md
!LICENSE.txt

# allow src dir
!src/

# allow libs
!lib/
!lib/glew/
!lib/glew/GL/
!lib/rocket/
!lib/stb/

#and src files inside
!*.glsl
!*.cpp
!*.c
!*.h

# allow rocket data
!sync.rocket

