This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/sprite/Body.h
2012-09-14 20:39:56 +02:00

21 lines
313 B
C++
Executable file

/*
* Body.h
*
* Created on: 13.09.2012
* Author: Felix
*/
#ifndef DG_BODY_H_
#define DG_BODY_H_
#include "../abstract/Sprite.h"
class Sprite;
class Body : public Sprite {
// Public functions.
public:
Body(b2World& world, const Vector2f& position);
};
#endif /* DG_BODY_H_ */