Files
InputTest_MiSTer/src/shared/starfield.h
2022-01-21 20:30:55 +00:00

32 lines
1.1 KiB
C

/*============================================================================
Aznable OS - Moroboshi (starfield)
Author: Jim Gregory - https://github.com/JimmyStones/
Version: 1.0
Date: 2021-11-27
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 3 of the License, or (at your option)
any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
===========================================================================*/
#ifndef STARFIELD_H
#define STARFIELD_H
extern void enable_starfield();
extern void disable_starfield();
extern void set_starfield_speed_x(float speed);
extern void set_starfield_speed_y(float speed);
#endif