Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/utils/control/bus/SingularEvent.java

17 lines
354 B

package mightypork.utils.control.bus;
import java.lang.annotation.*;
/**
* Event that is handled by only single client, and then discarded (ie. only one
* client receives it when it's broadcasted).
*
* @author MightyPork
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
public @interface SingularEvent {}