12 lines
369 B
C++
12 lines
369 B
C++
#pragma once
|
|
|
|
constexpr float FreightShipMaxSpeed = 100;
|
|
constexpr float FightShipMaxSpeed = 300;
|
|
constexpr int FreightLife = 10;
|
|
constexpr float LazerDamage = 2;
|
|
constexpr float LazerShooterSpeed = 500;
|
|
constexpr float LazerShooterMaxSpeed = 1000;
|
|
constexpr float LazerShooterCooldown = 0.3;
|
|
constexpr int GameWindowWidth = 1024;
|
|
constexpr int GameWindowHeight = 720;
|