turtlegame/assets/overworld/path-crossing.svg
Dominic 576b21d8b9
Some checks failed
Rust / rustfmt (push) Successful in 19s
Rust / clippy (push) Failing after 35s
Rust / build (push) Successful in 2m2s
Overworld Assets (#2)
Reviewed-on: #2
Co-authored-by: Dominic <git@msrd0.de>
Co-committed-by: Dominic <git@msrd0.de>
2024-07-06 11:52:10 +00:00

18 lines
575 B
XML

<svg version="1.1" width="512" height="512" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"
stroke="black" stroke-width="1" fill="none">
<image x="0" y="0" width="64" height="64" href="grass.svg"/>
<!-- fill the inner part of the path sandy'ish -->
<path d="M0,8 h8 v-8 h48 v8 h8 v48 h-8 v8 H8 v-8 H0 z" stroke="none" fill="sandybrown"/>
<!-- left/top border -->
<path d="M0,8 h8 v-8"/>
<!-- right/top border -->
<path d="M56,0 v8 h8"/>
<!-- left/bottom corner -->
<path d="M0,56 h8 v8"/>
<!-- right/bottom corner -->
<path d="M56,64 v-8 h8"/>
</svg>