/* This file is part of Invaders. * * Copyright (C) 2020 LCM. * You may use, distribute and modify Invaders under the terms of the * GPLv3 license, available at . */ #ifndef _body_hpp #define _body_hpp #include "definitions.hpp" class body { public: body(){ width=0; height=0; } body(int w, int h) { width=w; height=h; } int width, height; }; #endif