DEADSOFTWARE

portability: avoid errors on some compilers
[flatwaifu.git] / src / view.h
index a88e0f69b60caebe91f87476c41768762d5bc942..cc4087e16c65fe840ddb8715da3790f238469140 100644 (file)
@@ -1,30 +1,24 @@
-/*
-   Copyright (C) Prikol Software 1996-1997
-   Copyright (C) Aleksey Volynskov 1996-1997
-   Copyright (C) <ARembo@gmail.com> 2011
-
-   This file is part of the Doom2D:Rembo project.
-
-   Doom2D:Rembo is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License version 2 as
-   published by the Free Software Foundation.
-
-   Doom2D:Rembo 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/> or
-   write to the Free Software Foundation, Inc.,
-   51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
-*/
+/* Copyright (C) 1996-1997 Aleksey Volynskov
+ * Copyright (C) 2011 Rambo
+ * Copyright (C) 2020 SovietPony
+ *
+ * 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, version 3 of the License ONLY.
+ *
+ * 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 VIEW_H_INCLUDED
 #define VIEW_H_INCLUDED
 
 #include "glob.h"
-#include <stdio.h> // FILE
 
 #define FLDW 100
 #define FLDH 100
@@ -49,16 +43,6 @@ typedef struct {
   int r, h;            // radius, height
 } obj_t;
 
-typedef struct {
-  int x, y;
-  byte d;
-} pos_t;
-
-typedef struct {
-  char n[8];
-  char t;
-} wall_t;
-
 extern int sky_type;
 extern dword walf[256];
 extern byte fldb[FLDH][FLDW];
@@ -66,6 +50,5 @@ extern byte fldf[FLDH][FLDW];
 extern byte fld[FLDH][FLDW];
 
 void W_init (void);
-int W_load (FILE *h);
 
 #endif /* VIEW_H_INCLUDED */