QTfrontend/AutoUpdater.h
author nemo
Wed, 08 Sep 2010 17:34:18 -0400
changeset 3842 fc94291ca1d9
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Trying to adjust behaviour of multishoot w/ portal gun so switching weapons works correctly. Here's hoping I'm checking the hint correctly now.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif