7 lines
124 B
Python
7 lines
124 B
Python
|
|
from Constraint import Constraint
|
|
|
|
class Horizontal(Constraint):
|
|
def __init__(self, shape):
|
|
self.shape = shape
|