mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-14 19:00:40 +01:00
40 lines
524 B
INI
40 lines
524 B
INI
|
BOX designB
|
||
|
|
||
|
sample
|
||
|
B from config file A
|
||
|
ends
|
||
|
|
||
|
# The next line is syntactically fine, but it is NOT a parent reference.
|
||
|
parent "131_data/C.cfg"
|
||
|
|
||
|
shapes {
|
||
|
w ("BBB", "BBB", "BBB")
|
||
|
}
|
||
|
|
||
|
elastic (
|
||
|
w
|
||
|
)
|
||
|
|
||
|
END designB
|
||
|
|
||
|
# -------------------------------------------------------
|
||
|
|
||
|
BOX designB2
|
||
|
|
||
|
sample
|
||
|
B2 from config file A
|
||
|
ends
|
||
|
|
||
|
# The next line is a syntax error, because of missing quotes. Also, this is NOT a parent reference.
|
||
|
parent 131_data/C.cfg
|
||
|
|
||
|
shapes {
|
||
|
w ("BB2", "BB2", "BB2")
|
||
|
}
|
||
|
|
||
|
elastic (
|
||
|
w
|
||
|
)
|
||
|
|
||
|
END designB2
|