tileset.h

来自「symbian系统上的2D图形游戏」· C头文件 代码 · 共 37 行

H
37
字号
////////////////////////////////////////////////////////////////////////
//
// Tileset.h
//
// Copyright (c) 2003 Nokia Mobile Phones Ltd.  All rights reserved.
//
////////////////////////////////////////////////////////////////////////

#ifndef __TILESET_H
#define __TILESET_H

#include "RenderableFactory.h"

////////////////////////////////////////////////////////////////////////

class CTileset : public CRenderableFactory 
	{
public:
	~CTileset(){}

public:   
	TInt TileLogWidth(void);
	TInt TileLogHeight(void);

protected:
	CTileset(){}

protected:
	TInt iTileLogWidth;
	TInt iTileLogHeight;
	};

////////////////////////////////////////////////////////////////////////

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?