This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2022-02-07 21:38:35 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "tinyengine/tinyengine.hpp"
|
|
|
|
#include "game/component.hpp"
|
|
|
|
#include "game/global.hpp"
|
|
|
|
|
|
|
|
Entity* CreateFreightShip();
|
2022-02-08 21:02:52 +08:00
|
|
|
Entity* CreateFightShip();
|
2022-02-07 21:38:35 +08:00
|
|
|
Entity* CreateBullet(int damage, Entity* owner, float maxSpeedß);
|