blob: 97690a0212fa915f62662bac5ebba4beaeab4b8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Copyright 2022-2023 Gabriel Bjørnager Jensen.
#include <bow/logic.hxx>
auto bow::ware_density([[maybe_unused]] ::bow::Ware const ware) noexcept -> double {
double mass = 0x1p0;
return mass / ::bow::MASS_MODIFIER;
}
|