/*---------------------------------------------------------------------------* Copyright (C) Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef __DEMOWIN_TEXT_RIGHT_H_ #define __DEMOWIN_TEXT_RIGHT_H_ struct MenuTextRight : public MenuText { MenuTextRight(Window* window, CVec3 position, CVec2 size, const char* _text, CVec4 _color) : MenuText(window, position, size, _text, _color) {} static MenuTextRight* Add(const MenuTextRight& item); void Draw(); }; #endif