blob: 91de626c1196dc9a79ff1642558e5f78d7b7ebd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "SellResult.hpp"
using namespace OpenVic;
SellResult::SellResult(
const fixed_point_t new_quantity_sold,
const fixed_point_t new_money_gained
) :
quantity_sold { new_quantity_sold },
money_gained { new_money_gained }
{}
|