mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-22 22:35:12 +00:00
17 lines
299 B
C++
17 lines
299 B
C++
//
|
|
// Created by Tom Augier on 2021-05-20.
|
|
//
|
|
|
|
#include "GravityComponent.hpp"
|
|
|
|
namespace BBM
|
|
{
|
|
GravityComponent::GravityComponent(WAL::Entity &entity)
|
|
: WAL::Component(entity)
|
|
{}
|
|
|
|
WAL::Component *GravityComponent::clone(WAL::Entity &entity) const
|
|
{
|
|
return new GravityComponent(entity);
|
|
}
|
|
} |