@@ -132,7 +132,7 @@ class ExampleMod {
132132 Kuma . createKeyMapping(new Identifier (" example" , " example_key_1" ))
133133 .withDefault(InputBinding . key(InputConstants . KEY_G , KeyModifiers . of(KeyModifier . CONTROL )))
134134 .handleScreenInput((event) - > {
135- // TODO Add your press logic here
135+ // Add your press logic here
136136 return true ;
137137 })
138138 .build(); // Don't forget to call build() at the end!
@@ -142,7 +142,7 @@ class ExampleMod {
142142 .withDefault(InputBinding . mouse(InputConstants . MOUSE_BUTTON_LEFT ,
143143 KeyModifiers . ofCustom(InputConstants . getKey(InputConstants . KEY_SPACE , - 1 ))))
144144 .handleScreenInput((event) - > {
145- // TODO Add your press logic here
145+ // Add your press logic here
146146 return true ;
147147 })
148148 .build(); // Don't forget to call build() at the end!
@@ -154,11 +154,11 @@ class ExampleMod {
154154 .withDefault(InputBinding . key(InputConstants . KEY_G , KeyModifiers . of(KeyModifier . CONTROL , KeyModifier . SHIFT )))
155155 .withContext(KeyConflictContext . UNIVERSAL ) // This is normally just inferred from the supplied input handlers.
156156 .handleScreenInput((event) - > {
157- // TODO Add your press logic here
157+ // Add your press logic here
158158 return true ;
159159 })
160160 .handleWorldInput((event) - > {
161- // TODO Add your press logic here
161+ // Add your press logic here
162162 return true ;
163163 })
164164 .build(); // Don't forget to call build() at the end!
0 commit comments