QTfrontend/AutoUpdater.h
author smaxx
Fri, 10 Sep 2010 20:46:19 +0200
changeset 3848 32ceb775906b
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Engine: * Added new script call: OnGearDamage(GearID : integer, Damage : integer) - triggered once gears are damaged * Renamed script call: OnResurrect is now called OnGearResurrect * Added new script functions: CampaignLock(key : string), CampaignUnlock(key : string) - toggles for (not yet implemented) campaign access and progress flags

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif