RingRacers/src/hardware/hw_md2load.h
2024-04-05 10:00:33 -04:00

37 lines
942 B
C

// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) 2024 by Kart Krew.
// Copyright (C) 2020 by Sonic Team Junior.
// Copyright (C) 2020 by Spaddlewit Inc.
//
// This program is free software distributed under the
// terms of the GNU General Public License, version 2.
// See the 'LICENSE' file for more details.
//-----------------------------------------------------------------------------
/*
From the 'Wizard2' engine by Spaddlewit Inc. ( http://www.spaddlewit.com )
An experimental work-in-progress.
Donated to Sonic Team Junior and adapted to work with
Sonic Robo Blast 2.
*/
#ifndef _HW_MD2LOAD_H_
#define _HW_MD2LOAD_H_
#include "hw_model.h"
#include "../doomtype.h"
#ifdef __cplusplus
extern "C" {
#endif
// Load the Model
model_t *MD2_LoadModel(const char *fileName, int ztag, boolean useFloat);
#ifdef __cplusplus
} // extern "C"
#endif
#endif