This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
NFRev1/NothinFancy/src/include/NothinFancy.h
2021-11-25 14:01:20 -06:00

23 lines
503 B
C

#pragma once
//TODO: Rework this file to only contain functions the frontend will need to access
//Maybe a implementation define here?
//TODO: Prevent including other headers other than this one
#ifndef NFIMPL
#define NFIMPL 1
#endif
#include "Config.h"
#include "Application.h"
#include "Renderer.h"
#include "Utility.h"
#include "Assets.h"
#include "Entity.h"
#include "Light.h"
#include "Cubemap.h"
#include "Text.h"
#include "UITexture.h"
#include "Button.h"
#include "Sound.h"
#include "Input.h"