public PlayerClass(String name, String category, @Nullable String description, @Nullable String longDescription, boolean sticky, Set<Kit> kits, MaterialData icon, boolean restrict) {
this.name = checkNotNull(name, "name");
this.category = checkNotNull(category, "family name");
this.description = description;
this.longDescription = longDescription;
this.sticky = sticky;
this.kits = ImmutableSet.copyOf(checkNotNull(kits, "kits"));
this.icon = checkNotNull(icon, "icon");
this.restrict = restrict;
}
PlayerClass.java 文件源码
java
阅读 41
收藏 0
点赞 0
评论 0
项目:ProjectAres
作者:
评论列表
文章目录