2024-10-27 21:42:45 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-08-01 21:14:28 +02:00
|
|
|
module Tables
|
2024-11-10 17:30:01 +01:00
|
|
|
class Table < Set
|
2024-11-10 11:22:51 +01:00
|
|
|
attr_accessor :discomfort, :min_per_table, :max_per_table
|
|
|
|
|
2024-08-01 21:14:28 +02:00
|
|
|
def initialize(*args)
|
|
|
|
super
|
|
|
|
reset
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset
|
|
|
|
original_discomfort = discomfort
|
|
|
|
@discomfort = nil
|
|
|
|
original_discomfort
|
|
|
|
end
|
|
|
|
end
|
2024-11-10 11:22:51 +01:00
|
|
|
end
|