blob: c1322bde048e808b90b0ca974211863a1768168b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Starshatter: The Open Source Project
Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
#pragma once
#include <windows.h>
#include <Bitmap.h>
#include <Solid.h>
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);
template <typename ModelLoader> bool ImportInto(const char* pathname, Solid* target);
#include "MagicLoad.inl.h"
|