Skip to content

Instantly share code, notes, and snippets.

@sarvsav
Created September 25, 2015 18:47
Show Gist options
  • Save sarvsav/a562ef845fd4ba823b77 to your computer and use it in GitHub Desktop.
Save sarvsav/a562ef845fd4ba823b77 to your computer and use it in GitHub Desktop.
For C++ game projects
|── autogen.sh
├── CODING_STANDARDS.md
├── configure
├── data
│ ├── characters.json
│ ├── font
│ │ ├── font.ttf
│ ├── images
│ │ ├── animation
│ │ │ └── running
│ │ │ └── cyberbit
│ │ │ └── running.bmp
│ │ ├── attacking
│ │ │ └── cyberbit
│ │ │ ├── punching.bmp
│ │ ├── bgmap.bmp
│ │ ├── icon.bmp
│ │ ├── map.bmp
│ │ ├── pieces.bmp
│ │ ├── qnature.bmp
│ │ ├── qpieces.bmp
│ ├── maps
│ │ └── foregroundmap.map
│ ├── music
│ │ ├── cyberBitAirKick_chunk.wav
│ │ ├── cyberBitAirPunch_chunk.wav
│ │ ├── heroTheme_music.mp3
│ │ └── villainTheme_music.mp3
│ └── units
│ └── cyberbit_xin.cfg
├── docs
│ ├── characters.md
│ ├── comments
│ ├── CyberbitGame.mm
│ ├── Doxyfile
│ ├── hacking.md
│ ├── presentation.md
│ ├── roadmap.md
│ └── ToDo.txt
├── LICENSE
├── m4
├── Makefile
├── Makefile.am
├── Makefile.in
├── README.md
├── src
│ ├── cyberbitGame
│ ├── cyberbitGameplay
│ │ ├── gameplay.cpp
│ │ ├── gameplay.h
│ │ ├── main.cpp
│ ├── libCyberbitGame
│ │ ├── constants.h
│ │ ├── cyberbitGame.h
│ │ ├── engine
│ │ │ ├── character.h
│ │ │ ├── entity.h
│ │ │ ├── music.cpp
│ │ │ ├── music.h
│ │ │ ├── music.lo
│ │ │ ├── music.o
│ │ │ ├── resistance.h
│ │ │ └── weapon.h
│ │ ├── errors.h
│ │ ├── frame.cpp
│ │ ├── frame.h
│ │ ├── game.cpp
│ │ ├── game.h
│ │ ├── game.lo
│ │ ├── game.o
│ │ ├── globals.cpp
│ │ ├── globals.h
│ │ ├── globals.lo
│ │ ├── globals.o
│ │ ├── libraries.h
│ │ ├── menu.cpp
│ │ ├── menu.h
│ │ ├── menu.lo
│ │ ├── menu.o
│ │ ├── physics.cpp
│ │ ├── physics.h
│ │ ├── physics.lo
│ │ ├── physics.o
│ │ ├── player.cpp
│ │ ├── player.h
│ │ ├── player.lo
│ │ ├── player.o
│ │ ├── power.cpp
│ │ └── power.h
│ ├── libCyberbitGame.la
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ └── stamp-h1
└── tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment