45f0b31d57
Working: Rendering Resources Physics Player movement with mouse Shooting with mouse Tiles
13 lines
282 B
C++
Executable file
13 lines
282 B
C++
Executable file
/*
|
|
* Cover.cpp
|
|
*
|
|
* Created on: 12.08.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Cover.h"
|
|
|
|
Cover::Cover(const Vector2f& position, const Vector2i& size, b2World& world) :
|
|
Sprite("cover.png", PhysicalData(position, size, world, CATEGORY_WORLD, MASK_ALL, false)) {
|
|
}
|
|
|