SuperAllStarPhotoStudio/include/utils/common.hpp
2020-08-14 20:07:13 -06:00

16 lines
227 B
C++

#ifndef COMMON_HPP
#define COMMON_HPP
#ifdef NDS
#include <nds.h>
#else
#include <3ds.h>
#endif
#include "gfx.hpp"
#include "gui.hpp"
#include "screenCommon.hpp"
extern std::unique_ptr<Screen> usedScreen, tempScreen;
#endif