Bat/src/main/java/cc/fascinated/bat/common/Profile.java

27 lines
462 B
Java
Raw Normal View History

2024-06-24 12:56:01 +00:00
package cc.fascinated.bat.common;
import lombok.AllArgsConstructor;
import lombok.Getter;
2024-06-25 10:55:26 +00:00
import lombok.Setter;
2024-06-24 12:56:01 +00:00
import java.io.Serializable;
2024-06-24 12:56:01 +00:00
/**
* @author Fascinated (fascinated7)
*/
@AllArgsConstructor
2024-06-25 10:55:26 +00:00
@Getter @Setter
public abstract class Profile implements Serializable {
2024-06-24 12:56:01 +00:00
/**
* The key of the profile.
*/
2024-06-25 10:55:26 +00:00
private String profileKey;
public Profile() {}
2024-06-26 11:19:11 +00:00
/**
* Resets the profile
*/
public abstract void reset();
2024-06-24 12:56:01 +00:00
}