diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-22 15:42:19 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-22 15:42:19 +0100 |
commit | 2d8740b1e29fc356fbe88cea21059ec83d8c0cf0 (patch) | |
tree | 63dce5c6502861d52a1d982b705c65a2d2e4c60d /src/shared/shape.rs | |
parent | 91419fb01ef5dcdc06d9f6774d16d3ccca1e4b57 (diff) |
feat: minions
Diffstat (limited to 'src/shared/shape.rs')
-rw-r--r-- | src/shared/shape.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/shape.rs b/src/shared/shape.rs index 7423375..6e11c56 100644 --- a/src/shared/shape.rs +++ b/src/shared/shape.rs @@ -13,4 +13,8 @@ impl Shape { pub fn tower() -> Self { Shape { radius: 25. } } + + pub fn minion() -> Self { + Shape { radius: 5. } + } } |