10 lines
140 B
Ruby
10 lines
140 B
Ruby
|
module Mom
|
||
|
|
||
|
# A base class for conditions in MOM
|
||
|
# Just a marker, no real functionality for now
|
||
|
|
||
|
class Check < Instruction
|
||
|
|
||
|
end
|
||
|
end
|