Uses of Interface
com.smartfoxserver.v2.mmo.IMMOItemVariable
-
Packages that use IMMOItemVariable Package Description com.smartfoxserver.v2.api com.smartfoxserver.v2.mmo -
-
Uses of IMMOItemVariable in com.smartfoxserver.v2.api
Method parameters in com.smartfoxserver.v2.api with type arguments of type IMMOItemVariable Modifier and Type Method Description void
ISFSMMOApi. setMMOItemVariables(BaseMMOItem item, java.util.List<IMMOItemVariable> variables)
Set MMOItemVariables.void
ISFSMMOApi. setMMOItemVariables(BaseMMOItem item, java.util.List<IMMOItemVariable> variables, boolean fireClientEvent)
Set MMOItemVariables.void
SFSMMOApi. setMMOItemVariables(BaseMMOItem item, java.util.List<IMMOItemVariable> variables)
Set MMOItemVariables.void
SFSMMOApi. setMMOItemVariables(BaseMMOItem item, java.util.List<IMMOItemVariable> variables, boolean fireClientEvent)
Set MMOItemVariables. -
Uses of IMMOItemVariable in com.smartfoxserver.v2.mmo
Classes in com.smartfoxserver.v2.mmo that implement IMMOItemVariable Modifier and Type Class Description class
MMOItemVariable
MMOItem Variables allow to attach custom properties to MMOItems inside an MMORoom.Methods in com.smartfoxserver.v2.mmo that return IMMOItemVariable Modifier and Type Method Description IMMOItemVariable
IMMOItem. getVariable(java.lang.String varName)
Obtain a variable from the MMOItem via its nameIMMOItemVariable
MMOItem. getVariable(java.lang.String name)
Obtain a variable from the MMOItem via its nameMethods in com.smartfoxserver.v2.mmo that return types with arguments of type IMMOItemVariable Modifier and Type Method Description java.util.List<IMMOItemVariable>
IMMOItem. getVariables()
Get a list of all variables attached to the MMOItemjava.util.List<IMMOItemVariable>
MMOItem. getVariables()
Get a list of all variables attached to the MMOItemMethods in com.smartfoxserver.v2.mmo with parameters of type IMMOItemVariable Modifier and Type Method Description void
IMMOItem. setVariable(IMMOItemVariable var)
Used internally.void
MMOItem. setVariable(IMMOItemVariable var)
Used internally.Method parameters in com.smartfoxserver.v2.mmo with type arguments of type IMMOItemVariable Modifier and Type Method Description void
IMMOItem. setVariables(java.util.List<IMMOItemVariable> varList)
Used internally.void
MMOItem. setVariables(java.util.List<IMMOItemVariable> varList)
Used internally.Constructor parameters in com.smartfoxserver.v2.mmo with type arguments of type IMMOItemVariable Constructor Description MMOItem(java.util.List<IMMOItemVariable> variables)
Creates an MMOItem populated with custom variables
-