Система событий

This commit is contained in:
RoyceDa
2026-02-02 22:38:46 +02:00
parent bbc83c7d39
commit bb01add104
13 changed files with 338 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
package com.rosetta.im.event;
public class Event {
private String name;
public Event() {}
public String getEventName() {
if(this.name == null) {
this.name = this.getClass().getSimpleName();
}
return this.name;
}
}