roulette-payout/StreetBetsModel.h

18 lines
308 B
C
Raw Normal View History

2024-06-01 01:14:46 +01:00
#pragma once
#include <QQuickView>
#include <qqmlintegration.h>
#include <qtmetamacros.h>
#include <qobject.h>
class StreetBetsModel : public QObject {
Q_OBJECT
QML_ELEMENT
public:
explicit StreetBetsModel(QObject *parent = nullptr);
public slots:
void betOnStreet(int n);
};