10 lines
293 B
C++
10 lines
293 B
C++
#pragma once
|
|
|
|
constexpr float FreightMaxSpeed = 100;
|
|
constexpr float LazerDamage = 2;
|
|
constexpr float LazerShooterSpeed = 1000;
|
|
constexpr float LazerShooterMaxSpeed = 1000;
|
|
constexpr float LazerShooterCooldown = 0.3;
|
|
constexpr int GameWindowWidth = 1024;
|
|
constexpr int GameWindowHeight = 720;
|