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

20 lines
296 B
C
Raw Normal View History

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