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