mirror of
https://github.com/knightfox75/nds_nflib.git
synced 2025-06-18 16:55:32 -04:00
36 lines
620 B
C
36 lines
620 B
C
// SPDX-License-Identifier: MIT
|
|
//
|
|
// Copyright (c) 2009-2014 Cesar Rincon "NightFox"
|
|
//
|
|
// NightFox LIB - Include General
|
|
// http://www.nightfoxandco.com/
|
|
// Version 20140413
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef __NF_LIB_H__
|
|
#define __NF_LIB_H__
|
|
|
|
#include <nf_2d.h>
|
|
#include <nf_3d.h>
|
|
#include <nf_affinebg.h>
|
|
#include <nf_basic.h>
|
|
#include <nf_bitmapbg.h>
|
|
#include <nf_collision.h>
|
|
#include <nf_media.h>
|
|
#include <nf_mixedbg.h>
|
|
#include <nf_sound.h>
|
|
#include <nf_sprite256.h>
|
|
#include <nf_sprite3d.h>
|
|
#include <nf_text16.h>
|
|
#include <nf_text.h>
|
|
#include <nf_tiledbg.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|