10 lines
131 B
C++
10 lines
131 B
C++
|
#include "object.hpp"
|
||
|
|
||
|
sf::Vector2f Object::getPosition() {
|
||
|
return position;
|
||
|
}
|
||
|
|
||
|
int Object::getCharge() {
|
||
|
return charge;
|
||
|
}
|