Skip to content

Instantly share code, notes, and snippets.

@matt11matthew
Created February 11, 2017 03:40
Show Gist options
  • Save matt11matthew/8765ad3cfc17dec9b499b94a72f9c15d to your computer and use it in GitHub Desktop.
Save matt11matthew/8765ad3cfc17dec9b499b94a72f9c15d to your computer and use it in GitHub Desktop.
public void render() {
BufferStrategy bufferStrategy = getBufferStrategy();
if (bufferStrategy == null) {
createBufferStrategy(3);
return;
}
this.screen.render(bufferStrategy.getDrawGraphics());
bufferStrategy.show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment