Pop-Engine/Pop Engine/SellProduction.h
2019-08-13 00:25:03 +08:00

15 lines
172 B
C++

#pragma once
#include "Production.h"
class SellProduction :
public Production
{
public:
private:
float num;
float price;
float need;
shared_ptr<Production> type;
};