mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-20 13:25:10 +00:00
15 lines
250 B
C++
15 lines
250 B
C++
//
|
|
// Created by Tom Augier on 2021-05-20.
|
|
// Edited by Benjamin Henry on 2021-05-20.
|
|
//
|
|
|
|
#include "KeyboardComponent.hpp"
|
|
|
|
namespace BBM
|
|
{
|
|
KeyboardComponent::KeyboardComponent(WAL::Entity &entity)
|
|
: WAL::Component(entity)
|
|
{}
|
|
|
|
} // namespace BMM
|