QTfrontend/AutoUpdater.h
author smaxx
Mon, 23 Aug 2010 16:29:12 +0200
changeset 3758 80007c41c35e
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Frontend: * Simplified the code to setup config structure and prepared it to enable user accessible asset directories * Renamed team file extensions from ".ini" to ".hwt" (Hedgewars Team) * Added campaign progress to teams (I know, no campaign ... yet)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif