QTfrontend/util/platform/AutoUpdater.h
author Wuzzy <almikes@aol.com>
Tue, 12 Apr 2016 19:46:25 +0200
changeset 11687 594016813e06
parent 8381 588a8e6e2041
permissions -rw-r--r--
Update Rope-Knocking Challenge - Fix challenge being stuck when leftmost hog drowns - Display custom taunts for knocked hogs - Stats screen now shows the actual relevant facts - Add simple scoring system - Minor message changes - More translation-friendly strings

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif