Files
Bomberman/lib/wal/sources/System/System.cpp
2021-05-17 17:03:15 +02:00

15 lines
207 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)
{}
}