Add 1.16 ApiVersion

This commit is contained in:
md_5 2021-05-16 18:18:16 +10:00
parent 4d209deecf
commit 6621a16619
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -44,7 +44,12 @@ public @interface ApiVersion {
/**
* This target version specifies that the plugin was made with 1.15+ versions in mind.
*/
v1_15( "1.15" );
v1_15( "1.15" ),
/**
* This target version specifies that the plugin was made with 1.16+ versions in mind.
*/
v1_16("1.16");
private final String version;