mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-16 17:39:03 -06:00
10 lines
189 B
Lua
10 lines
189 B
Lua
local Randomizer = require 'tetris.randomizers.randomizer'
|
|
|
|
local AlwaysRandomizer = Randomizer:extend()
|
|
|
|
function AlwaysRandomizer:generatePiece()
|
|
return "I"
|
|
end
|
|
|
|
return AlwaysRandomizer
|