You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
678 B
C

#pragma once
#include <allegro5/allegro.h>
#include "enums.h"
6 years ago
//Game Element base class, with position, height, and screen bounding properties along with its behavior
class GameElement {
public:
float x_pos;
float y_pos;
float h_t_bound;
float h_b_bound;
float l_bound;
float r_bound;
float speed;
float height;
float width;
bool oob;
Behavior behavior;
6 years ago
//Set position of object
virtual void reset_pos(float x, float y) = 0;
6 years ago
//Move object
virtual void move(Direction dir) = 0;
6 years ago
//Draw object to screen
virtual void draw() = 0;
6 years ago
//Build hitbox struct for the object at position in current frame
virtual Hitbox get_hitbox() = 0;
};