aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/FireworksRocketEntity.h
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
commit42aec6dac53dffa6afe072560a7e1d4986112538 (patch)
tree0836426857391df1b6a83f6368a183f83ec9b104 /Minecraft.World/FireworksRocketEntity.h
parentc9d58eeac7c72f0b3038e084667b4d89a6249fce (diff)
parentef9b6fd500dfabd9463267b0dd9e29577eea8a2b (diff)
Merge branch 'main' into pr/win64-world-saves
# Conflicts: # Minecraft.Client/MinecraftServer.cpp # README.md
Diffstat (limited to 'Minecraft.World/FireworksRocketEntity.h')
-rw-r--r--Minecraft.World/FireworksRocketEntity.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/Minecraft.World/FireworksRocketEntity.h b/Minecraft.World/FireworksRocketEntity.h
new file mode 100644
index 00000000..025a2778
--- /dev/null
+++ b/Minecraft.World/FireworksRocketEntity.h
@@ -0,0 +1,38 @@
+#pragma once
+
+#include "Entity.h"
+
+class FireworksRocketEntity : public Entity
+{
+public:
+ eINSTANCEOF GetType() { return eTYPE_FIREWORKS_ROCKET; }
+ static Entity *create(Level *level) { return new FireworksRocketEntity(level); }
+
+private:
+ static const int DATA_ID_FIREWORKS_ITEM = 8;
+
+ int life;
+ int lifetime;
+
+ // constructor needed for level loader
+public:
+ FireworksRocketEntity(Level *level);
+
+protected:
+ virtual void defineSynchedData();
+
+public:
+ virtual bool shouldRenderAtSqrDistance(double distance);
+
+ FireworksRocketEntity(Level *level, double x, double y, double z, shared_ptr<ItemInstance> sourceItem);
+
+ virtual void lerpMotion(double xd, double yd, double zd);
+ virtual void tick();
+ virtual void handleEntityEvent(byte eventId);
+ virtual void addAdditonalSaveData(CompoundTag *tag);
+ virtual void readAdditionalSaveData(CompoundTag *tag);
+ virtual float getShadowHeightOffs();
+ virtual float getBrightness(float a);
+ virtual int getLightColor(float a);
+ virtual bool isAttackable();
+}; \ No newline at end of file