mirror of
https://github.com/plexusorg/Plex.git
synced 2025-06-28 22:46:40 +00:00
Overhaul menu system and simplify it heavily, separating Pageable Menus and regular Menus into two different implementations
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
package dev.plex.util.function;
|
||||
|
||||
/**
|
||||
* @author Taah
|
||||
* @since 8:40 AM [02-09-2023]
|
||||
*/
|
||||
public interface ConditionalQuadConsumer<K, V, S, T>
|
||||
{
|
||||
boolean accept(K k, V v, S s, T t);
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package dev.plex.util.function;
|
||||
|
||||
/**
|
||||
* @author Taah
|
||||
* @since 8:40 AM [02-09-2023]
|
||||
*/
|
||||
public interface QuadConsumer<K, V, S, T>
|
||||
{
|
||||
void accept(K k, V v, S s, T t);
|
||||
}
|
Reference in New Issue
Block a user