layers.c: button functions receive button number as first argument

also minor improvements
This commit is contained in:
Thomas Bernard
2018-11-28 12:58:33 +01:00
parent 53296293ee
commit 811ae20534
4 changed files with 63 additions and 71 deletions

View File

@@ -19,6 +19,8 @@
You should have received a copy of the GNU General Public License
along with Grafx2; if not, see <http://www.gnu.org/licenses/>
*/
#ifndef LAYERS_H__
#define LAYERS_H__
void Button_Layer_add(int);
void Button_Layer_duplicate(int);
@@ -40,5 +42,4 @@ void Button_Anim_last_frame(int);
void Button_Anim_play(int);
void Button_Anim_continuous_prev(int);
void Button_Anim_continuous_next(int);
short Layer_under_mouse(void);
#endif