X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fgenerator.qh;h=003c2b1d6855f1f93fed3d1ae078dbf2e8c841b9;hb=2e4b6fcb1aec544934a31bd49bba5eeecaffbf86;hp=439a3427852832060f7b78874e7deef6c28d7d8d;hpb=306b95b7d03edfdada049ad3118809137bfe731d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/generator.qh b/qcsrc/server/generator.qh index 439a34278..003c2b1d6 100644 --- a/qcsrc/server/generator.qh +++ b/qcsrc/server/generator.qh @@ -1,10 +1,10 @@ +#ifndef GENERATOR_H +#define GENERATOR_H const vector GENERATOR_MIN = '-52 -52 -14'; const vector GENERATOR_MAX = '52 52 75'; -float GSF_STATUS = 4; -float GSF_SETUP = 8; +const int GSF_STATUS = 4; +const int GSF_SETUP = 8; -#ifdef CSQC -void ent_generator(); -void generator_precache(); -#endif \ No newline at end of file +bool generator_send(entity this, entity to, int sf); +#endif