QTfrontend/AutoUpdater.h
author Henek
Sat, 29 Jan 2011 18:18:44 +0100
changeset 4881 35e6269227b6
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
still in developement take on adding structures, working hiding of hogs and ejecting them later. also some refactoring in uGears to evade "ambigous" variable names and, a little tweak to teleportation code that should not affect game but will help in for instance lua

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif