QTfrontend/AutoUpdater.h
author martin_bede
Tue, 08 Jan 2013 00:40:20 +0400
changeset 8366 67c7ba2b82a3
parent 8284 a874d00df4a4
permissions -rw-r--r--
lua API functions to enable or disable game flags

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