QTfrontend/AutoUpdater.h
author nemo
Sat, 05 Nov 2011 20:51:15 -0400
changeset 6295 5b2b304a91ec
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Due to the small values and friction, halve the step in low gravity, instead of the value

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif