source: events/src/main/java/geniusweb/events/ProtocolEvent.java@ 47

Last change on this file since 47 was 47, checked in by bart, 2 years ago

Refactor to help reusing partiesserver.

File size: 218 bytes
Line 
1package geniusweb.events;
2
3/**
4 * an event triggered by the protocol.
5 */
6public abstract class ProtocolEvent extends AbstractEvent {
7 public ProtocolEvent() {
8
9 }
10
11 public ProtocolEvent(Long now) {
12 super(now);
13 }
14}
Note: See TracBrowser for help on using the repository browser.