QTfrontend/InstallController.h
author smaxx
Tue, 24 Aug 2010 01:17:24 +0200
changeset 3761 f96b99f944e6
parent 3697 d5b30d6373fc
child 4976 088d40d8aba2
permissions -rw-r--r--
Engine: * Added a new script function: HogTurnLeft(int gearid, bool facesleft) to turn hogs left or right * Added a new script function: HogSay(int gearid, string text, int type) to let hogs say something using speech bubbles Campaign: * Added a simple tutorial as the first mission

/*
 *  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