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.cpp

15 lines
294 B
C++
Executable File

/*
* Body.cpp
*
* Created on: 13.09.2012
* Author: Felix
*/
#include "Body.h"
Body::Body(b2World& world, const Vector2f& position, const Yaml& config) :
Sprite(config, PhysicalData(position, Vector2i(50, 50), world,
CATEGORY_NONSOLID, MASK_NONE, false)) {
}