QTfrontend/AutoUpdater.h
author sheepluva
Fri, 09 Sep 2011 15:36:30 +0200
changeset 5825 a6eab1b7c00d
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event. I implemented that event in Tumber and Space Invasion already in order to update HUD locations properly. (mikade: deal with it $

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif