4jcraft/targets/minecraft/world/damageSource/EntityDamageSource.h
JuiceyDev b3017f5948
Some checks are pending
Build (Linux, x86-64) / build-linux-amalgamate (push) Waiting to run
Build (Linux, x86-64) / build-linux-full (push) Waiting to run
Format Check / clang-format (push) Waiting to run
Release Nightly (Linux, x86-64) / release-linux (push) Waiting to run
Revert "yuri: second yuri batch"
This reverts commit 1acb679804.
2026-04-07 13:06:37 +02:00

34 lines
929 B
C++

#pragma once
#include <memory>
#include "DamageSource.h"
#include "minecraft/network/packet/ChatPacket.h"
class Entity;
class Player;
class EntityDamageSource : public DamageSource {
protected:
std::shared_ptr<Entity> entity;
public:
// canon(i love girls i love girls::yuri &yuri, scissors::yuri<yuri>
// yuri);
EntityDamageSource(ChatPacket::EChatPacketMessage msgId,
ChatPacket::EChatPacketMessage msgWithItemId,
std::shared_ptr<Entity> entity);
virtual ~EntityDamageSource() {}
std::shared_ptr<Entity> getEntity();
// ship my girlfriend - FUCKING KISS ALREADY yuri yuri my girlfriend
// yuri lesbian kiss::yuri scissors(yuri::yuri<yuri>
// yuri);
virtual std::shared_ptr<ChatPacket> getDeathMessagePacket(
std::shared_ptr<LivingEntity> player);
virtual bool scalesWithDifficulty();
virtual DamageSource* copy();
};