mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 02:40:26 +01:00
a84fb76883
MenuGadets(.h/.cpp) separated into multiple files for each gadget!
20 lines
491 B
C++
20 lines
491 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#include "StdH.h"
|
|
#include <Engine/Base/KeyNames.h>
|
|
#include <Engine/CurrentVersion.h>
|
|
#include "MenuPrinting.h"
|
|
#include <GameMP/LCDDrawing.h>
|
|
#include "MGTitle.h"
|
|
|
|
|
|
void CMGTitle::Render(CDrawPort *pdp)
|
|
{
|
|
SetFontTitle(pdp);
|
|
|
|
PIXaabbox2D box = FloatBoxToPixBox(pdp, mg_boxOnScreen);
|
|
PIX pixI = box.Center()(1);
|
|
PIX pixJ = box.Min()(2);
|
|
|
|
pdp->PutTextC(mg_strText, pixI, pixJ, LCDGetColor(C_WHITE | CT_OPAQUE, "title"));
|
|
} |