CS代考 FF0000

//=================================================================
// The header file defining the missile module
// Copyright 2021 Georgia Tech. All rights reserved.
// The materials provided by the instructor in this course are for

Copyright By PowCoder代写 加微信 powcoder

// the use of the students currently enrolled in the course.
// Copyrighted course materials may not be further disseminated.
// This file must not be made publicly available anywhere.
//==================================================================
#ifndef MISSILE_PRIVATE_H
#define MISSILE_PRIVATE_H

#include “mbed.h”
#include “globals.h”
#include “missile_public.h”

//==== [private settings] ====
int MISSILE_INTERVAL = 10;
int MISSILE_SPEED = 6;
#define MISSILE_COLOR 0xFF0000

//==== [private type] ====

//==== [private function] ====
void missile_create(void);
void missile_update_position(void);
void missile_draw(MISSILE* missile, int color);

#endif //MISSILE_PRIVATE_H

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com