QTfrontend/AutoUpdater.h
author unc0rr
Thu, 01 Sep 2011 17:45:21 +0400
changeset 5722 3b7f2bfc8632
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Keep blowtorch direction (doesn't actually fix the bug with hedgehog turning opposite direction)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif