Add ApiVersion.v1_20

This commit is contained in:
Doc 2023-06-08 02:12:32 +10:00 committed by md_5
parent 766c36ac54
commit ae54046503
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -64,7 +64,12 @@ public @interface ApiVersion {
/**
* This target version specifies that the plugin was made with 1.19+ versions in mind.
*/
v1_19("1.19");
v1_19("1.19"),
/**
* This target version specifies that the plugin was made with 1.20+ versions in mind.
*/
v1_20("1.20");
private final String version;