platform: add Platfrom_Init, Platform_Shutdown, Platform_MouseMove move platform-specific code from host.c

This commit is contained in:
mittorn
2020-02-08 23:00:39 +07:00
parent adc718f4d5
commit 3e3aff040e
10 changed files with 221 additions and 181 deletions

View File

@@ -439,6 +439,12 @@ void Platform_EnableTextInput( qboolean enable )
evdev.chars = enable;
evdev.shift = false;
}
void Platfrom_MouseMove( float *yaw, float *pitch )
{
// already catched in IN_EvdevMove
}
#endif
void Evdev_Init( void )