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

📄 resources.h

📁 linux下的一些小游戏编程
💻 H
字号:
#ifndef RESOURCES_H#define RESOURCES_H#include <SDL/SDL.h>extern SDL_Surface *ship_strip;		/* rotating ship in 2-degree increments */extern SDL_Surface *front_star_tiles;	/* for the parallaxing star layer */extern SDL_Surface *back_star_tiles;	/* for the star background */extern int num_star_tiles;		/* derived from the width of the loaded strips */void LoadGameData(void);/* Loads the game's resources. Exits the program on failure. */void UnloadGameData(void);/* Frees all of the game's data. */#endif

⌨️ 快捷键说明

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