org.pixel.pipeline.PipelineHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pixel-pipeline Show documentation
Show all versions of pixel-pipeline Show documentation
Modular Java/Kotlin 2D Game Framework.
/*
* This software is available under Apache License
* Copyright (c)
*/
package org.pixel.pipeline;
public interface PipelineHandler {
/**
* Handle and process the given data.
*
* @param ctx The pipeline context.
* @param data The data to process.
*/
void process(PipelineContext ctx, T data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy