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