2021-12-10 00:27:56 +01:00
|
|
|
package com.jozufozu.flywheel.api;
|
2021-12-09 09:42:27 +01:00
|
|
|
|
|
|
|
/**
|
2022-09-16 22:32:13 +02:00
|
|
|
* A marker interface custom levels can override to indicate
|
|
|
|
* that block entities and entities inside the level should
|
2022-01-04 06:41:08 +01:00
|
|
|
* render with Flywheel.
|
2021-12-09 09:42:27 +01:00
|
|
|
*
|
|
|
|
* {@link net.minecraft.client.Minecraft#level Minecraft#level} is special cased and will support Flywheel by default.
|
|
|
|
*/
|
2022-09-16 22:32:13 +02:00
|
|
|
public interface FlywheelLevel {
|
2021-12-09 09:42:27 +01:00
|
|
|
default boolean supportsFlywheel() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|