Pop-Engine/Pop Engine/SellProduction.h

15 lines
172 B
C
Raw Normal View History

2019-08-12 16:25:03 +00:00
#pragma once
#include "Production.h"
class SellProduction :
public Production
{
public:
private:
float num;
float price;
float need;
shared_ptr<Production> type;
};