aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/economy/trading/SellResult.hpp
diff options
context:
space:
mode:
author wvpm <24685035+wvpm@users.noreply.github.com>2024-10-28 11:07:15 +0100
committer wvpm <24685035+wvpm@users.noreply.github.com>2024-11-15 09:13:31 +0100
commita8ef75c96c579f74ee68789c5879df5262e36220 (patch)
treea10aeb9d4673f8eadf8bb397cf5f7cad3927e288 /src/openvic-simulation/economy/trading/SellResult.hpp
parente91bd6c3322a73c3ac6707329e81b6f2edc0b8be (diff)
Add market placeholder
Diffstat (limited to 'src/openvic-simulation/economy/trading/SellResult.hpp')
-rw-r--r--src/openvic-simulation/economy/trading/SellResult.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/openvic-simulation/economy/trading/SellResult.hpp b/src/openvic-simulation/economy/trading/SellResult.hpp
new file mode 100644
index 0000000..f3a40ad
--- /dev/null
+++ b/src/openvic-simulation/economy/trading/SellResult.hpp
@@ -0,0 +1,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
+ );
+ };
+} \ No newline at end of file