view GUI/UI/UITransition.h @ 2575:a76d408c5132 tip

DrawTranslucent -> DrawTextureGrayShade Removed old texture drawing stuff
author a.parshin
date Wed, 09 Mar 2016 01:39:52 +0200
parents e06a3fe9ad6e
children
line wrap: on
line source

#pragma once
#include "GUI/GUIWindow.h"

struct GUIWindow_Travel : public GUIWindow
{
    GUIWindow_Travel();
    virtual ~GUIWindow_Travel() {}

    virtual void Update();
    virtual void Release();
};


struct GUIWindow_Transition : public GUIWindow
{
    GUIWindow_Transition(uint32_t anim_id, uint32_t exit_pic_id, int x, int y, int z, int directiony, int directionx, int a8, const char *pLocationName);
    virtual ~GUIWindow_Transition() {}

    virtual void Update();
    virtual void Release();
};