ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el19tb

Dependencies:   mbed

Frog/Frog.cpp

Committer:
el19tb
Date:
2020-05-16
Revision:
31:70521f37e004
Parent:
Frog/Chicken.cpp@ 5:6e3afee7eac3
Child:
39:8b09540724b3

File content as of revision 31:70521f37e004:

#include "Frog.h"
 
Serial pc(USBTX, USBRX);

//every chicken object will accept x, y, and width (square)
Frog::Frog(int x, int y, int width){
    this->x = x;
    this->y = y;
    this->width = width;
    
    left_side = x;
    right_side = width + x;
    up = y;
    down = width + y;
}