Add some collision bars.

This commit is contained in:
King_DuckZ 2014-07-28 11:03:39 +02:00
parent cdaffe0f2b
commit f52476a4ec
4 changed files with 18 additions and 1 deletions

View file

@ -28,6 +28,7 @@ namespace cloonel {
Character::Character (const std::string& parPath, SDLMain* parMain, float2 parSize) :
Placeable(float2(0.0f)),
Drawable(parSize),
m_bottomBar(float2(0.0f), parSize.x()),
m_screenRatio(parMain),
m_texture(new Texture(parPath, parMain, false))
{
@ -39,6 +40,7 @@ namespace cloonel {
Character::Character (const std::string&& parPath, SDLMain* parMain, float2 parSize) :
Placeable(float2(0.0f)),
Drawable(parSize),
m_bottomBar(float2(0.0f), parSize.x()),
m_screenRatio(parMain),
m_texture(new Texture(parPath, parMain, false))
{