blob: f3a40adefd70a85ca5d6d581f34958f1001cb6d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "openvic-simulation/types/fixed_point/FixedPoint.hpp"
namespace OpenVic {
struct SellResult {
private:
fixed_point_t PROPERTY(quantity_sold);
fixed_point_t PROPERTY(money_gained);
public:
SellResult(
const fixed_point_t new_quantity_sold,
const fixed_point_t new_money_gained
);
};
}
|