Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
trinity/include/emote.h
2021-07-21 16:08:15 -04:00

11 lines
195 B
C++

#pragma once
#include <QString>
class Emote : public QObject {
Q_OBJECT
Q_PROPERTY(QString path MEMBER path)
Q_PROPERTY(QString name MEMBER name)
public:
QString path, name;
};