blob: 9eabff7c5ee88173d96a18a8cd3d1ea6a27eb396 (
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 BuyResult {
private:
fixed_point_t PROPERTY(quantity_bought);
fixed_point_t PROPERTY(money_left);
public:
BuyResult(
const fixed_point_t new_quantity_bought,
const fixed_point_t new_money_left
);
};
}
|