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
|
|
|
|
|
2022-02-08 21:02:52 +08:00
|
|
|
constexpr float FreightShipMaxSpeed = 100;
|
|
|
|
constexpr float FightShipMaxSpeed = 300;
|
|
|
|
constexpr int FreightLife = 10;
|
2022-02-07 21:38:35 +08:00
|
|
|
constexpr float LazerDamage = 2;
|
2022-02-08 21:02:52 +08:00
|
|
|
constexpr float LazerShooterSpeed = 500;
|
2022-02-07 21:38:35 +08:00
|
|
|
constexpr float LazerShooterMaxSpeed = 1000;
|
|
|
|
constexpr float LazerShooterCooldown = 0.3;
|
|
|
|
constexpr int GameWindowWidth = 1024;
|
|
|
|
constexpr int GameWindowHeight = 720;
|