Add 360° screenshot feature when pressing Ctrl + Screenshot Keybind

This commit is contained in:
CrushedPixel
2017-09-27 00:16:39 +02:00
parent adfe6a2bfc
commit 9671ee605d
6 changed files with 168 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package com.replaymod.replay.events;
import net.minecraftforge.fml.common.eventhandler.Cancelable;
import net.minecraftforge.fml.common.eventhandler.Event;
@Cancelable
public abstract class ReplayDispatchKeypressesEvent extends Event {
public static class Pre extends ReplayDispatchKeypressesEvent {}
}