Stub out a potential fix for #287 (optifine resolution)

This commit is contained in:
James Seibel
2022-08-16 20:29:12 -05:00
parent 04220584b3
commit 3995e07d91
@@ -27,4 +27,15 @@ public interface IOptifineAccessor extends IModAccessor
{
/** Can be null */
HashSet<DHChunkPos> getNormalRenderedChunks();
/**
* Returns the percentage multiplier of the screen's current resolution. <br>
* 1.0 = 100% <br>
* 1.5 = 150% <br>
*/
default double getRenderResolutionMultiplier()
{
return 1.0;
}
}