123456789101112131415161718192021222324 |
- /* 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 <https://www.gnu.org/licenses/\>.
- */
- #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
|