mirror of
https://github.com/zserge/fenster.git
synced 2025-04-12 10:48:41 +03:00
54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*
|
|
* dummy.c
|
|
*
|
|
* Created on: 16.02.2015
|
|
* Author: Florian
|
|
*/
|
|
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* include files *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
#include "doomtype.h"
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* local definitions *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* external declarations *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* public data *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
boolean net_client_connected = false;
|
|
|
|
boolean drone = false;
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* private data *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* private functions *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* public functions *
|
|
*---------------------------------------------------------------------*/
|
|
|
|
#ifndef FEATURE_SOUND
|
|
|
|
void I_InitTimidityConfig(void)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
/*---------------------------------------------------------------------*
|
|
* eof *
|
|
*---------------------------------------------------------------------*/
|