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