com.skillw.pouvoir.api.feature.condition.ConditionReader.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
package com.skillw.pouvoir.api.feature.condition
/**
* @className ConditionReader
*
* 从字符串中读取条件的参数
*
* @author Glom
* @date 2023/8/1 23:55 Copyright 2022 user.
*/
fun interface ConditionReader {
/**
* 从字符串中读取条件的参数
*
* @param text String 文本
* @return Map 参数
*/
fun parameters(
text: String,
): Map?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy