Rename DhApi event Parameter objects

This commit is contained in:
James Seibel
2022-07-17 20:33:50 -05:00
parent 484c95e26a
commit 299a7c67f0
3 changed files with 10 additions and 11 deletions
@@ -8,10 +8,10 @@ import com.seibel.lod.core.api.implementation.interfaces.events.IDhApiEvent;
* @author James Seibel
* @version 2022-7-17
*/
public abstract class DhApiAfterRenderEvent implements IDhApiEvent<DhApiAfterRenderEvent.Parameter>
public abstract class DhApiAfterRenderEvent implements IDhApiEvent<DhApiAfterRenderEvent.EventParam>
{
/** Fired after Distant Horizons finishes rendering fake chunks. */
public abstract void afterRender(Parameter input);
public abstract void afterRender(EventParam input);
//=========================//
@@ -19,7 +19,7 @@ public abstract class DhApiAfterRenderEvent implements IDhApiEvent<DhApiAfterRen
//=========================//
@Override
public final boolean onEvent(Parameter input)
public final boolean onEvent(EventParam input)
{
afterRender(input);
return false;
@@ -33,9 +33,9 @@ public abstract class DhApiAfterRenderEvent implements IDhApiEvent<DhApiAfterRen
// parameter object //
//==================//
public static class Parameter extends DhApiRenderParam
public static class EventParam extends DhApiRenderParam
{
public Parameter(
public EventParam(
DhApiMat4f newMinecraftProjectionMatrix, DhApiMat4f newMinecraftModelViewMatrix,
DhApiMat4f newDistantHorizonsProjectionMatrix, DhApiMat4f newDistantHorizonsModelViewMatrix,
float newPartialTicks)
@@ -1,6 +1,5 @@
package com.seibel.lod.core.api.external.methods.events.abstractEvents;
import com.seibel.lod.core.api.external.methods.events.sharedParameterObjects.DhApiAfterRenderParam;
import com.seibel.lod.core.api.implementation.interfaces.events.IDhApiEvent;
/**
@@ -8,14 +8,14 @@ import com.seibel.lod.core.api.implementation.interfaces.events.IDhApiEvent;
* @author James Seibel
* @version 2022-7-17
*/
public abstract class DhApiBeforeRenderEvent implements IDhApiEvent<DhApiBeforeRenderEvent.Parameter>
public abstract class DhApiBeforeRenderEvent implements IDhApiEvent<DhApiBeforeRenderEvent.EventParam>
{
/**
* Fired before Distant Horizons finishes rendering fake chunks.
*
* @return whether the event should be canceled or not.
*/
public abstract boolean beforeRender(Parameter input);
public abstract boolean beforeRender(EventParam input);
//=========================//
@@ -23,7 +23,7 @@ public abstract class DhApiBeforeRenderEvent implements IDhApiEvent<DhApiBeforeR
//=========================//
@Override
public final boolean onEvent(Parameter input)
public final boolean onEvent(EventParam input)
{
return beforeRender(input);
}
@@ -36,9 +36,9 @@ public abstract class DhApiBeforeRenderEvent implements IDhApiEvent<DhApiBeforeR
// parameter object //
//==================//
public static class Parameter extends DhApiRenderParam
public static class EventParam extends DhApiRenderParam
{
public Parameter(
public EventParam(
DhApiMat4f newMinecraftProjectionMatrix, DhApiMat4f newMinecraftModelViewMatrix,
DhApiMat4f newDistantHorizonsProjectionMatrix, DhApiMat4f newDistantHorizonsModelViewMatrix,
float newPartialTicks)