14 lines
206 B
Java
14 lines
206 B
Java
package pp.mdga.notification;
|
|
|
|
/**
|
|
* Notification that the dice is now.
|
|
*/
|
|
public class DiceNowNotification extends Notification {
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
DiceNowNotification() {
|
|
}
|
|
}
|