List of files - ljackl/BubbleTrouble GitHub Wiki

As of 24/05/2018

.
├── artifacts
│   ├── 05_Week
│   │   ├── 00_Meeting_Agenda.txt
│   │   ├── 00_MoM.txt
│   │   └── 01_Project_Proposal.txt
│   ├── 06_Week
│   │   ├── 00_Meeting_Agenda.txt
│   │   └── 00_MoM.txt
│   ├── 07_Week
│   │   ├── 00_Meeting_Agenda.txt
│   │   └── 00_MoM.txt
│   ├── 08_Week
│   │   ├── 00_Jack-Standup.txt
│   │   ├── 00_Patrick-Standup.txt
│   │   └── 00_Sarah-Standup.txt
│   ├── 09_Week
│   │   ├── 00_Jack-Standup.txt
│   │   ├── 00_Patrick-Standup.txt
│   │   └── 00_Sarah-Standup.txt
│   ├── 10_Week
│   │   ├── 00_Jack-Standup.txt
│   │   ├── 00_Patrick-Standup.txt
│   │   └── 00_Sarah-Standup.txt
│   └── 11_Week
│       └── Process review.txt
├── Bubble Trouble
│   ├── artifacts
│   │   └── 10_Week
│   │       └── 00_Jack-Standup.txt
│   ├── Bubble Trouble.vcxproj
│   ├── Bubble Trouble.vcxproj.filters
│   ├── Bubble Trouble.vcxproj.user
│   ├── CMakeLists.txt
│   ├── cmake_modules
│   │   └── FindSFML.cmake
│   ├── include
│   │   └── catch.hpp
│   ├── resources
│   │   ├── credits.txt
│   │   ├── fonts
│   │   │   ├── kenvector_future_thin.ttf
│   │   │   └── kenvector_future.ttf
│   │   └── images
│   │       ├── background.png
│   │       ├── bubble.png
│   │       ├── bullet.png
│   │       ├── ground.png
│   │       ├── player.png
│   │       └── player-walking.png
│   └── src
│       ├── core
│       │   ├── AnimationHandler.cpp
│       │   ├── AnimationHandler.hpp
│       │   ├── Bubble.cpp
│       │   ├── Bubble.hpp
│       │   ├── Bullet.cpp
│       │   ├── Bullet.hpp
│       │   ├── Game.cpp
│       │   ├── GameEntity.cpp
│       │   ├── GameEntity.hpp
│       │   ├── Game.hpp
│       │   ├── Player.cpp
│       │   ├── Player.hpp
│       │   ├── TextureManager.cpp
│       │   └── TextureManager.hpp
│       ├── main.cpp
│       ├── other
│       │   ├── TestClass.cpp
│       │   └── TestClass.hpp
│       ├── states
│       │   ├── CreditGameState.cpp
│       │   ├── CreditGameState.hpp
│       │   ├── EndGameState.cpp
│       │   ├── EndGameState.hpp
│       │   ├── GameState.hpp
│       │   ├── MenuGameState.cpp
│       │   ├── MenuGameState.hpp
│       │   ├── PlayGameState.cpp
│       │   ├── PlayGameState.hpp
│       │   ├── SplashGameState.cpp
│       │   └── SplashGameState.hpp
│       └── unit_tests
│           ├── BubbleTest.cpp
│           ├── BulletTest.cpp
│           ├── GameTest.cpp
│           └── Test.cpp
├── BubbleTrouble.sln
└── README.md

44 directories, 159 files

⚠️ **GitHub.com Fallback** ⚠️