⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enuos.h

📁 俄罗斯方块源码
💻 H
字号:
/***************************************************************************/
/*                                                                         */
/*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -