10 lines
127 B
C++
10 lines
127 B
C++
#include "Production.h"
|
|
|
|
float Production::get_value(){
|
|
return value;
|
|
}
|
|
|
|
string Production::get_name(){
|
|
return name;
|
|
}
|