9 lines
205 B
C++
9 lines
205 B
C++
|
#pragma once
|
||
|
|
||
|
#include "tinyengine/tinyengine.hpp"
|
||
|
#include "game/component.hpp"
|
||
|
#include "game/global.hpp"
|
||
|
|
||
|
Entity* CreateFreightShip();
|
||
|
Entity* CreateBullet(int damage, Entity* owner, float maxSpeedß);
|