All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.lessvoid.nifty.gdx.render.GdxBatchRenderBackendFactory Maven / Gradle / Ivy

package de.lessvoid.nifty.gdx.render;

import de.lessvoid.nifty.render.batch.BatchRenderBackendInternal;

import javax.annotation.Nonnull;

/**
 * @author Aaron Mahan <[email protected]>
 */
public class GdxBatchRenderBackendFactory {
  @Nonnull
  public static GdxBatchRenderBackend create() {
    return new GdxBatchRenderBackend(
            new BatchRenderBackendInternal(
                    new GdxGL(),
                    new GdxBufferFactory(),
                    new GdxImageFactory(),
                    new GdxMouseCursorFactory()));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy