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