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