50 lines
2.0 KiB
C
50 lines
2.0 KiB
C
/***************************************************************************
|
|
shine.h - description
|
|
-------------------
|
|
begin : Thu Sep 13 2001
|
|
copyright : (C) 2001 by Michael Speck
|
|
email : kulkanie@gmx.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
/*
|
|
====================================================================
|
|
Load/delete resources
|
|
====================================================================
|
|
*/
|
|
void shine_load();
|
|
void shine_delete();
|
|
/*
|
|
====================================================================
|
|
Recreate shine on a random but valid brick
|
|
====================================================================
|
|
*/
|
|
void shine_create();
|
|
/*
|
|
====================================================================
|
|
Reset (delete( shine
|
|
====================================================================
|
|
*/
|
|
void shine_reset();
|
|
/*
|
|
====================================================================
|
|
Show/hide current shine
|
|
====================================================================
|
|
*/
|
|
void shine_hide();
|
|
void shine_show();
|
|
/*
|
|
====================================================================
|
|
Update shine
|
|
====================================================================
|
|
*/
|
|
void shine_update( int ms );
|