QTfrontend/AutoUpdater.h
author unc0rr
Sat, 07 Jul 2012 23:31:59 +0400
changeset 7351 34efdd1f230f
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game) - Send LEFT message after deletion of player's teams (no idea if this breaks anything, but this is more accurate behavior)

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif