QTfrontend/InstallController.h
author nemo
Wed, 22 Dec 2010 11:59:35 -0500
changeset 4629 b5d726bc4f8d
parent 3697 d5b30d6373fc
child 4976 088d40d8aba2
permissions -rw-r--r--
FindPlace in lua now returns null for failure to find a place, and accepts a 5th parameter to try finding a place without considering proximity (note that this can place a gear right next to mines).

/*
 *  InstallController.h
 *
 *
 *  Created by Vittorio on 28/09/09.
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
 *
 */

#ifndef INSTALLCONTROLLER_H
#define INSTALLCONTROLLER_H

class InstallController
        {
    public:
        virtual ~InstallController();

        virtual void showInstallController() = 0;
        };

#endif