📄 fontblowup.h
字号:
/*
$Id: fontblowup.h,v 1.2 2003/10/14 15:52:09 mbn Exp $
------------------------------------------------------------------------
ClanLib, the platform independent game SDK.
This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
version 2. See COPYING for details.
For a total list of contributers see CREDITS.
------------------------------------------------------------------------
File purpose:
Small Pacman game. Class that blows up the font!
*/
#ifndef header_fontblowup
#define header_fontblowup
#if _MSC_VER > 1000
#pragma once
#endif
/*
#include <ClanLib/core.h>
#include <ClanLib/display.h>
class FontBlowUp
{
protected:
CL_Font *font;
int initial_x;
int initial_y;
CL_String text;
float *letters_x;
float *letters_y;
float *letters_z;
float *letters_delta_x;
float *letters_delta_y;
float *letters_delta_z;
void create_letters();
public:
FontBlowUp(const char *text, int x, int y, CL_Font *font);
virtual ~FontBlowUp();
bool show(float time_elapsed);
};
*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -