Files
Bomberman/lib/wal/sources/System/System.cpp
2021-05-18 10:36:18 +02:00

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()
{}
}