QTfrontend/AutoUpdater.h
author palewolf
Fri, 02 Apr 2010 18:54:08 +0000
changeset 3265 5fe62296fdea
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
- Parallax effect for horizont when water is out of sight - Honor reducedquality and don't calculate offsets on wimpy machines

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif