aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/qmltypesregister.cpp
blob: adc13decf0b752e5f7ef68005a630ec7c497071d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include "qmltypesregister.h"

#include "diceroller.h"


void registerQmlTypes()
{

    qmlRegisterType<DiceRoller>("Dice", 1, 0, "DiceRoller");



}