QTfrontend/util/platform/AutoUpdater.h
author Periklis Ntanasis <pntanasis@gmail.com>
Sat, 14 Sep 2013 02:13:20 +0300
branchspacecampaign
changeset 9624 51e22761679d
parent 8381 588a8e6e2041
permissions -rw-r--r--
fixed bug making the game not end when thanta was dead,reported by Wuzzy

/*
 * 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