Examples of ChernoError


Examples of com.thecherno.cherno.engine.error.ChernoError

    });
  }

  public void renderTexture(Texture texture, int x, int y) {
    if (texture == null) {
      new ChernoError("Texture is null!", this).show();
      return;
    }
    for (int yy = 0; yy < texture.getHeight(); yy++) {
      int yp = yy + y;
      for (int xx = 0; xx < texture.getWidth(); xx++) {
View Full Code Here

Examples of com.thecherno.cherno.engine.error.ChernoError

    return "Screen class";
  }

  public void render(int x, int y, Renderable renderable) {
    if (renderable == null) {
      new ChernoError("Renderable is null!", this).show();
      return;
    }
    for (int yy = 0; yy < renderable.getHeight(); yy++) {
      int yp = yy + y;
      for (int xx = 0; xx < renderable.getWidth(); xx++) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.