enuos.h
来自「俄罗斯方块源码」· C头文件 代码 · 共 48 行
H
48 行
/***************************************************************************/
/* */
/* NewEnuos.h */
/* */
/* The entry of the application */
/* . */
/* */
/* Copyright 2007 by */
/* Kan(EMail: k32459871@126.com.) */
/* Data: 2007-5-1 */
/* */
/***************************************************************************/
#ifndef _ENUOS_H_
#define _ENUOS_H_
#include "def.h"
#include "Color.h"
#include "Canvas.h"
#include "Shape.h"
class NewEnuos : public AEEApplet
{
private:
AEEDeviceInfo DeviceInfo;
public:
/*App Handle Event Function*/
static boolean NewEnuos_HandleEvent(NewEnuos* pMe, AEEEvent eCode,
uint16 wParam, uint32 dwParam);
/*App Init Data Function*/
static boolean NewEnuos_InitAppData(NewEnuos* pMe);
/*App Free Data Function*/
static void NewEnuos_FreeAppData(NewEnuos* pMe);
/*Getter function for DeviceInfo*/
AEEDeviceInfo& GetDevice();
/*Construct function*/
NewEnuos();
protected:
public:
Canvas* canvas;
Shape * shape;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?