QTfrontend/AutoUpdater.h
author smxx
Sun, 31 Jan 2010 22:15:53 +0000
changeset 2733 52a5a160566f
parent 2266 289dc8e51210
child 2948 3f21a9dc93d0
permissions -rw-r--r--
Engine: * Keep blowtorch and other weapons from penetrating indestructible terrain (e.g. solid borders) * Reduced explosion background borders Frontend: + Show unknown or missing maps in room list by tinting them red

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
	public:
		virtual ~AutoUpdater();

		virtual void checkForUpdates() = 0;
};

#endif