From 56f76f4d524ca12bef5c775da6e7282e8322a951 Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 4 Apr 2024 02:16:26 +0200 Subject: Extracted ModelFile related functionality out of Magic2 to a library --- MagicEx/MagicLoad.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 MagicEx/MagicLoad.h (limited to 'MagicEx/MagicLoad.h') diff --git a/MagicEx/MagicLoad.h b/MagicEx/MagicLoad.h new file mode 100644 index 0000000..27b6380 --- /dev/null +++ b/MagicEx/MagicLoad.h @@ -0,0 +1,18 @@ +/* Starshatter: The Open Source Project + Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors + Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors + Copyright (c) 1997-2006, Destroyer Studios LLC. + + AUTHOR: John DiCamillo +*/ + +#pragma once + +#include + +#include + + +int LoadBuffer(const char* filename, BYTE*& buf, bool null_terminate=false); +int LoadTexture(const char* name, Bitmap*& bmp, int type=0); +int LoadAlpha(const char* name, Bitmap& bitmap, int type=0); -- cgit v1.1