LateRenderable.java 300 B

12345678910111213
  1. /*
  2. * Copyright (c) 2018, 2019, 2020 shedaniel
  3. * Licensed under the MIT License (the "License").
  4. */
  5. package me.shedaniel.rei.gui.widget;
  6. import org.jetbrains.annotations.ApiStatus;
  7. @ApiStatus.Internal
  8. public interface LateRenderable {
  9. void lateRender(int mouseX, int mouseY, float delta);
  10. }