music-field/include/fields.hpp

20 lines
313 B
C++
Raw Normal View History

2018-12-25 13:41:30 +00:00
#ifndef fields_hpp
#define fields_hpp
#include <type.hpp>
#include <graphs.hpp>
class Field:public Shape{
public:
double people;
Field():people(0),Shape(){
setRetangle({{0,0,0},{0,0,0}});
}
Field(pair<Point3,Point3> pos){
setRetangle(pos);
}
};
#endif /* fields_hpp */