QTfrontend/AutoUpdater.h
author Henek
Mon, 13 Dec 2010 15:02:04 +0100
changeset 4517 0618b31023dc
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif