mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 13:55:10 +00:00
18 lines
241 B
C++
18 lines
241 B
C++
//
|
|
// Created by Zoe Roux on 5/17/21.
|
|
//
|
|
|
|
#include "System.hpp"
|
|
|
|
namespace WAL
|
|
{
|
|
|
|
void System::onUpdate(Entity &entity, std::chrono::nanoseconds dtime)
|
|
{}
|
|
|
|
void System::onFixedUpdate(Entity &entity)
|
|
{}
|
|
|
|
void System::onSelfUpdate()
|
|
{}
|
|
} |