| 23 | } |
| 24 | |
| 25 | std::string Entity::getSaveString() const { |
| 26 | return "New Entity" |
| 27 | "\ntype = " |
| 28 | "\nxpos = " + toString(position.x) + |
| 29 | "\nypos = " + toString(position.y) + |
| 30 | "\nwidth = " + toString(size.x) + |
| 31 | "\nheight = " + toString(size.y) + |
| 32 | "\nmass = " + toString(mass); |
| 33 | } |
| 34 | |
| 35 | int Entity::numOfEntities = 0; |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected