/* * coords.h * This file is part of Bean Counters Classic * * Copyright (C) 2022 - Félix Arreola Rodríguez * * Bean Counters Classic is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Bean Counters Classic is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Bean Counters Classic; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA */ #ifndef __COORDS_H__ #define __COORDS_H__ extern const int bag_0_points[31][3]; extern const int bag_1_points[22][3]; extern const int bag_2_points[28][3]; extern const int bag_3_points[33][3]; extern const int bag_stack_offsets[30][2]; extern const int anvil_offsets[24][2]; extern const int anvil_collider_offsets[23][2]; extern const int fish_collider_offsets[10][2]; extern const int flower_collider_offsets [11][2]; extern const int oneup_offsets[35][2]; extern const int fish_offsets[35][2]; extern const int flower_offsets[32][2]; #endif /* __COORDS_H__ */