Files
PyG2O/src/classes/sq/DamageDescription.h
AURUMVORXX 4efda3e2e0 feat: Added DamageDescription class
+ Added onPlayerDamage event
2024-11-06 02:09:04 +03:00

28 lines
540 B
C++

#ifndef _DAMAGEDESCRIPTION_H_
#define _DAMAGEDESCRIPTION_H_
#include <string>
#include <NoNut/core/Class.h>
#include <NoNut/core/CustomTypes.h>
namespace nonut
{
class DamageDescription : public Class
{
public:
DamageDescription();
explicit DamageDescription(SQObject object);
// Properties
Property<Int> flags;
Property<Int> damage;
Property<String> item_instance;
Property<Int> distance;
Property<Int> spell_id;
Property<Int> spell_level;
Property<String> node;
};
}
#endif