rv.data.Effect.EffectVariable.EffectInt */ class EffectInt extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field int32 value = 1; */ protected $value = 0; /** * Generated from protobuf field int32 default_value = 2; */ protected $default_value = 0; /** * Generated from protobuf field int32 min = 3; */ protected $min = 0; /** * Generated from protobuf field int32 max = 4; */ protected $max = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $value * @type int $default_value * @type int $min * @type int $max * } */ public function __construct($data = NULL) { \GPBMetadata\Effects::initOnce(); parent::__construct($data); } /** * Generated from protobuf field int32 value = 1; * @return int */ public function getValue() { return $this->value; } /** * Generated from protobuf field int32 value = 1; * @param int $var * @return $this */ public function setValue($var) { GPBUtil::checkInt32($var); $this->value = $var; return $this; } /** * Generated from protobuf field int32 default_value = 2; * @return int */ public function getDefaultValue() { return $this->default_value; } /** * Generated from protobuf field int32 default_value = 2; * @param int $var * @return $this */ public function setDefaultValue($var) { GPBUtil::checkInt32($var); $this->default_value = $var; return $this; } /** * Generated from protobuf field int32 min = 3; * @return int */ public function getMin() { return $this->min; } /** * Generated from protobuf field int32 min = 3; * @param int $var * @return $this */ public function setMin($var) { GPBUtil::checkInt32($var); $this->min = $var; return $this; } /** * Generated from protobuf field int32 max = 4; * @return int */ public function getMax() { return $this->max; } /** * Generated from protobuf field int32 max = 4; * @param int $var * @return $this */ public function setMax($var) { GPBUtil::checkInt32($var); $this->max = $var; return $this; } }