diff --git a/sc2/src/uqm/ships/androsyn/androsyn.h b/sc2/src/uqm/ships/androsyn/androsyn.h new file mode 100644 index 000000000..4e891e3db --- /dev/null +++ b/sc2/src/uqm/ships/androsyn/androsyn.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef ANDROSYN_H +#define ANDROSYN_H + +RACE_DESC *init_androsynth (void); + +#endif /* ANDROSYN_H */ + diff --git a/sc2/src/uqm/ships/arilou/arilou.h b/sc2/src/uqm/ships/arilou/arilou.h new file mode 100644 index 000000000..606dd9608 --- /dev/null +++ b/sc2/src/uqm/ships/arilou/arilou.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef ARILOU_H +#define ARILOU_H + +RACE_DESC *init_arilou (void); + +#endif /* ARILOU_H */ + diff --git a/sc2/src/uqm/ships/blackurq/blackurq.h b/sc2/src/uqm/ships/blackurq/blackurq.h new file mode 100644 index 000000000..3a1b9404b --- /dev/null +++ b/sc2/src/uqm/ships/blackurq/blackurq.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef BLACKURQ_H +#define BLACKURQ_H + +RACE_DESC *init_black_urquan (void); + +#endif /* BLACKURQ_H */ + diff --git a/sc2/src/uqm/ships/chenjesu/chenjesu.h b/sc2/src/uqm/ships/chenjesu/chenjesu.h new file mode 100644 index 000000000..8cd17a515 --- /dev/null +++ b/sc2/src/uqm/ships/chenjesu/chenjesu.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef CHENJESU_H +#define CHENJESU_H + +RACE_DESC *init_chenjesu (void); + +#endif /* CHENJESU_H */ + diff --git a/sc2/src/uqm/ships/chmmr/chmmr.h b/sc2/src/uqm/ships/chmmr/chmmr.h new file mode 100644 index 000000000..5499fe797 --- /dev/null +++ b/sc2/src/uqm/ships/chmmr/chmmr.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef CHMMR_H +#define CHMMR_H + +RACE_DESC *init_chmmr (void); + +#endif /* CHMMR_H */ + diff --git a/sc2/src/uqm/ships/druuge/druuge.h b/sc2/src/uqm/ships/druuge/druuge.h new file mode 100644 index 000000000..ec25d7752 --- /dev/null +++ b/sc2/src/uqm/ships/druuge/druuge.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef DRUUGE_H +#define DRUUGE_H + +RACE_DESC *init_druuge (void); + +#endif /* DRUUGE_H */ + diff --git a/sc2/src/uqm/ships/human/human.h b/sc2/src/uqm/ships/human/human.h new file mode 100644 index 000000000..7a1f18c85 --- /dev/null +++ b/sc2/src/uqm/ships/human/human.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef HUMAN_H +#define HUMAN_H + +RACE_DESC *init_human (void); + +#endif /* HUMAN_H */ + diff --git a/sc2/src/uqm/ships/ilwrath/ilwrath.h b/sc2/src/uqm/ships/ilwrath/ilwrath.h new file mode 100644 index 000000000..e5914767d --- /dev/null +++ b/sc2/src/uqm/ships/ilwrath/ilwrath.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef ILWRATH_H +#define ILWRATH_H + +RACE_DESC *init_ilwrath (void); + +#endif /* ILWRATH_H */ + diff --git a/sc2/src/uqm/ships/lastbat/lastbat.h b/sc2/src/uqm/ships/lastbat/lastbat.h new file mode 100644 index 000000000..abd7658e8 --- /dev/null +++ b/sc2/src/uqm/ships/lastbat/lastbat.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef LASTBAT_H +#define LASTBAT_H + +RACE_DESC *init_samatra (void); + +#endif /* LASTBAT_H */ + diff --git a/sc2/src/uqm/ships/melnorme/melnorme.h b/sc2/src/uqm/ships/melnorme/melnorme.h new file mode 100644 index 000000000..4fb6254bc --- /dev/null +++ b/sc2/src/uqm/ships/melnorme/melnorme.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef MELNORME_H +#define MELNORME_H + +RACE_DESC *init_melnorme (void); + +#endif /* MELNORME_H */ + diff --git a/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.h b/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.h new file mode 100644 index 000000000..a942f9ac4 --- /dev/null +++ b/sc2/src/uqm/ships/mmrnmhrm/mmrnmhrm.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef MMRNMHRM_H +#define MMRNMHRM_H + +RACE_DESC *init_mmrnmhrm (void); + +#endif /* MMRNMHRM_H */ + diff --git a/sc2/src/uqm/ships/mycon/mycon.h b/sc2/src/uqm/ships/mycon/mycon.h new file mode 100644 index 000000000..f536532af --- /dev/null +++ b/sc2/src/uqm/ships/mycon/mycon.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef MYCON_H +#define MYCON_H + +RACE_DESC *init_mycon (void); + +#endif /* MYCON_H */ + diff --git a/sc2/src/uqm/ships/orz/orz.h b/sc2/src/uqm/ships/orz/orz.h new file mode 100644 index 000000000..28693a9a4 --- /dev/null +++ b/sc2/src/uqm/ships/orz/orz.h @@ -0,0 +1,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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef ORZ_H +#define ORZ_H + +RACE_DESC *init_orz (void); + +void intruder_preprocess (ELEMENT *ElementPtr); +void marine_collision (ELEMENT *ElementPtr0, POINT *pPt0, + ELEMENT *ElementPtr1, POINT *pPt1); + +#endif /* ORZ_H */ + diff --git a/sc2/src/uqm/ships/pkunk/pkunk.h b/sc2/src/uqm/ships/pkunk/pkunk.h new file mode 100644 index 000000000..aa1dd7104 --- /dev/null +++ b/sc2/src/uqm/ships/pkunk/pkunk.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef PKUNK_H +#define PKUNK_H + +RACE_DESC *init_pkunk (void); + +#endif /* PKUNK_H */ + diff --git a/sc2/src/uqm/ships/probe/probe.h b/sc2/src/uqm/ships/probe/probe.h new file mode 100644 index 000000000..4af7e9826 --- /dev/null +++ b/sc2/src/uqm/ships/probe/probe.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef PROBE_H +#define PROBE_H + +RACE_DESC *init_probe (void); + +#endif /* PROBE_H */ + diff --git a/sc2/src/uqm/ships/shofixti/shofixti.h b/sc2/src/uqm/ships/shofixti/shofixti.h new file mode 100644 index 000000000..1151ea4af --- /dev/null +++ b/sc2/src/uqm/ships/shofixti/shofixti.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SHOFIXTI_H +#define SHOFIXTI_H + +RACE_DESC *init_shofixti (void); + +#endif /* SHOFIXTI_H */ + diff --git a/sc2/src/uqm/ships/sis_ship/sis_ship.h b/sc2/src/uqm/ships/sis_ship/sis_ship.h new file mode 100644 index 000000000..79dda24e3 --- /dev/null +++ b/sc2/src/uqm/ships/sis_ship/sis_ship.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SIS_SHIP_H +#define SIS_SHIP_H + +RACE_DESC *init_sis (void); + +#endif /* SIS_SHIP_H */ + diff --git a/sc2/src/uqm/ships/slylandr/slylandr.h b/sc2/src/uqm/ships/slylandr/slylandr.h new file mode 100644 index 000000000..72843395d --- /dev/null +++ b/sc2/src/uqm/ships/slylandr/slylandr.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SLYLANDR_H +#define SLYLANDR_H + +RACE_DESC *init_slylandro (void); + +#endif /* SLYLANDR_H */ + diff --git a/sc2/src/uqm/ships/spathi/spathi.h b/sc2/src/uqm/ships/spathi/spathi.h new file mode 100644 index 000000000..4a4d58cb4 --- /dev/null +++ b/sc2/src/uqm/ships/spathi/spathi.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SPATHI_H +#define SPATHI_H + +RACE_DESC *init_spathi (void); + +#endif /* SPATHI_H */ + diff --git a/sc2/src/uqm/ships/supox/supox.h b/sc2/src/uqm/ships/supox/supox.h new file mode 100644 index 000000000..ce3721379 --- /dev/null +++ b/sc2/src/uqm/ships/supox/supox.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SUPOX_H +#define SUPOX_H + +RACE_DESC *init_supox (void); + +#endif /* SUPOX_H */ + diff --git a/sc2/src/uqm/ships/syreen/syreen.h b/sc2/src/uqm/ships/syreen/syreen.h new file mode 100644 index 000000000..713f87f09 --- /dev/null +++ b/sc2/src/uqm/ships/syreen/syreen.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef SYREEN_H +#define SYREEN_H + +RACE_DESC *init_syreen (void); + +#endif /* SYREEN_H */ + diff --git a/sc2/src/uqm/ships/thradd/thradd.h b/sc2/src/uqm/ships/thradd/thradd.h new file mode 100644 index 000000000..193248cd1 --- /dev/null +++ b/sc2/src/uqm/ships/thradd/thradd.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef THRADD_H +#define THRADD_H + +RACE_DESC *init_thraddash (void); + +#endif /* THRADD_H */ + diff --git a/sc2/src/uqm/ships/umgah/umgah.h b/sc2/src/uqm/ships/umgah/umgah.h new file mode 100644 index 000000000..5da749230 --- /dev/null +++ b/sc2/src/uqm/ships/umgah/umgah.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef UMGAH_H +#define UMGAH_H + +RACE_DESC *init_umgah (void); + +#endif /* UMGAH_H */ + diff --git a/sc2/src/uqm/ships/urquan/urquan.h b/sc2/src/uqm/ships/urquan/urquan.h new file mode 100644 index 000000000..d1a4161df --- /dev/null +++ b/sc2/src/uqm/ships/urquan/urquan.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef URQUAN_H +#define URQUAN_H + +RACE_DESC *init_urquan (void); + +#endif /* URQUAN_H */ + diff --git a/sc2/src/uqm/ships/utwig/utwig.h b/sc2/src/uqm/ships/utwig/utwig.h new file mode 100644 index 000000000..903625a45 --- /dev/null +++ b/sc2/src/uqm/ships/utwig/utwig.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef UTWIG_H +#define UTWIG_H + +RACE_DESC *init_utwig (void); + +#endif /* UTWIG_H */ + diff --git a/sc2/src/uqm/ships/vux/vux.h b/sc2/src/uqm/ships/vux/vux.h new file mode 100644 index 000000000..e1a6ee2a1 --- /dev/null +++ b/sc2/src/uqm/ships/vux/vux.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef VUX_H +#define VUX_H + +RACE_DESC *init_vux (void); + +#endif /* VUX_H */ + diff --git a/sc2/src/uqm/ships/yehat/yehat.h b/sc2/src/uqm/ships/yehat/yehat.h new file mode 100644 index 000000000..ae8a0bb55 --- /dev/null +++ b/sc2/src/uqm/ships/yehat/yehat.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef YEHAT_H +#define YEHAT_H + +RACE_DESC *init_yehat (void); + +#endif /* YEHAT_H */ + diff --git a/sc2/src/uqm/ships/zoqfot/zoqfot.h b/sc2/src/uqm/ships/zoqfot/zoqfot.h new file mode 100644 index 000000000..83a16f67c --- /dev/null +++ b/sc2/src/uqm/ships/zoqfot/zoqfot.h @@ -0,0 +1,23 @@ +/* + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef ZOQFOT_H +#define ZOQFOT_H + +RACE_DESC *init_zoqfotpik (void); + +#endif /* ZOQFOT_H */ +