LandMineRepeatingStyle

Enumeration that represents the different repeating styles for the LandMine tile.

Values

None [0]LandMine expires after being triggered once
Step [1]LandMine can be triggered several times by stepping on it
Repeat [2]LandMine explodes several times in a row with a delay

Examples

local noRepeat = LandMineRepeatingStyle.None;

local stepRepeat = LandMineRepeatingStyle.Step;

local repeatRepeat = LandMineRepeatingStyle.Repeat;