From 825fd2d6769e0fe3ee1272629b2b2ce6c29ddd0c Mon Sep 17 00:00:00 2001 From: shnakamura Date: Tue, 10 Sep 2024 04:43:09 -0300 Subject: [PATCH] Starts Wildlife Warrior set bonus --- src/Aurora/Content/Items/Wildlife/WildWarriorPlayer.cs | 6 ++++++ .../Content/Items/Wildlife/WildWarriorPlayerRenderer.cs | 6 ++++++ src/Aurora/Core/Graphics/SpriteBatchSnapshot.cs | 3 +++ src/Aurora/Utilities/_Extensions/SpriteBatchExtensions.cs | 6 ++++++ 4 files changed, 21 insertions(+) create mode 100644 src/Aurora/Content/Items/Wildlife/WildWarriorPlayer.cs create mode 100644 src/Aurora/Content/Items/Wildlife/WildWarriorPlayerRenderer.cs create mode 100644 src/Aurora/Core/Graphics/SpriteBatchSnapshot.cs create mode 100644 src/Aurora/Utilities/_Extensions/SpriteBatchExtensions.cs diff --git a/src/Aurora/Content/Items/Wildlife/WildWarriorPlayer.cs b/src/Aurora/Content/Items/Wildlife/WildWarriorPlayer.cs new file mode 100644 index 0000000..7b93f2e --- /dev/null +++ b/src/Aurora/Content/Items/Wildlife/WildWarriorPlayer.cs @@ -0,0 +1,6 @@ +namespace Aurora.Content.Items.Wildlife; + +public class WildWarriorPlayer +{ + +} diff --git a/src/Aurora/Content/Items/Wildlife/WildWarriorPlayerRenderer.cs b/src/Aurora/Content/Items/Wildlife/WildWarriorPlayerRenderer.cs new file mode 100644 index 0000000..eabf6b1 --- /dev/null +++ b/src/Aurora/Content/Items/Wildlife/WildWarriorPlayerRenderer.cs @@ -0,0 +1,6 @@ +namespace Aurora.Content.Items.Wildlife; + +public class WildWarriorPlayerRenderer +{ + +} diff --git a/src/Aurora/Core/Graphics/SpriteBatchSnapshot.cs b/src/Aurora/Core/Graphics/SpriteBatchSnapshot.cs new file mode 100644 index 0000000..3738c5a --- /dev/null +++ b/src/Aurora/Core/Graphics/SpriteBatchSnapshot.cs @@ -0,0 +1,3 @@ +namespace Aurora.Core.Graphics; + +public record SpriteBatchSnapshot(); diff --git a/src/Aurora/Utilities/_Extensions/SpriteBatchExtensions.cs b/src/Aurora/Utilities/_Extensions/SpriteBatchExtensions.cs new file mode 100644 index 0000000..302e596 --- /dev/null +++ b/src/Aurora/Utilities/_Extensions/SpriteBatchExtensions.cs @@ -0,0 +1,6 @@ +namespace Aurora.Utilities; + +public class SpriteBatchExtensions +{ + +}