2016 ソフトウェア設計及び演習用の班Wiki
16::gr05::Obstacle.h
#ifndef DEF_OBSTACLE_H
#define DEF_OBSTACLE_H
#include "../Map/room.h"
#define OBSTACLE_SIZE 31
#define OBSTACLE_MAX 80
typedef struct {
double x, y;
int alive;
}Obstacle_t;
Obstacle_t Ob[5][OBSTACLE_MAX];
void Obstacle_Init(Obstacle_t *o, int x, int y);
void ObstacleALLInit(Room_t a);
#endif
最終更新日:2016/07/29 21:07:18