Creation of physics project
[physics.git] / src / GameStates / Paused.cpp
1 #include "Paused.h"
2
3 /// ***** Constructors/Destructors *****
4 Paused::Paused()
5 {
6
7 }
8 Paused::~Paused()
9 {
10
11 }
12
13 /// ***** Public Class Methods *****
14 void Paused::handleInput(bool on_top) const
15 {
16     // TODO
17 }
18 void Paused::update(float time_step, bool on_top) const
19 {
20
21 }
22 void Paused::draw(bool on_top) const
23 {
24     // TODO
25 }