@Override public void keyPressed(CCKeyEvent theKeyEvent) { switch (theKeyEvent.keyCode()) { case CCKeyEvent.VK_R: _myContourText.reset(); break; } }
public void draw() { g.clear(); _myContourText.draw(g); }
public void update(final float theDeltaTime) { _myContourText.update(theDeltaTime); }