Physics2D/RigidBody2D: Temporary remove SetGeom to fix a linking error

This commit is contained in:
Lynix
2016-10-14 18:01:24 +02:00
parent 119436a642
commit f3e041c4c0
2 changed files with 11 additions and 20 deletions

View File

@@ -50,7 +50,6 @@ namespace Nz
bool IsSleeping() const;
void SetAngularVelocity(float angularVelocity);
void SetGeom(Collider2DRef geom);
void SetGravityFactor(float gravityFactor);
void SetMass(float mass);
void SetMassCenter(const Vector2f& center);
@@ -63,6 +62,7 @@ namespace Nz
private:
void Destroy();
void SetGeom(Collider2DRef geom);
std::vector<cpShape*> m_shapes;
Collider2DRef m_geom;