/*
 * Stats.h
 *
 *  Created on: 21 févr. 2017
 *      Author: sylvain
 */

#ifndef STATVIEW_H_
#define STATVIEW_H_

#include <QWidget>
#include <QBoxLayout>
#include <QLabel>
#include <QFontDatabase>
#include <QFont>
#include <QDebug>

class StatView {


public:
    StatView();
    virtual ~StatView();
    QWidget *getWidget(void);
    void updateStats(float life, float score, float time);

    QLabel label1;
    QLabel label2;
    QLabel label3;
    QWidget *widget;
    QGridLayout *layout;

};

#endif /* STATVIEW_H_ */
