Extra2D/include/extra2d.h

46 lines
848 B
C

#pragma once
// Extra2D v3.0 - 统一入口头文件
// 包含所有公共 API
// Types
#include <types/base/types.h>
#include <types/const/priority.h>
#include <types/ptr/intrusive_ptr.h>
#include <types/ptr/ref_counted.h>
// Math
#include <types/math/color.h>
#include <types/math/rect.h>
#include <types/math/size.h>
#include <types/math/transform.h>
#include <types/math/vec2.h>
#include <types/math/vec3.h>
// Core
#include <core/director.h>
#include <core/scheduler.h>
#include <core/service.h>
// Platform
#include <platform/file.h>
#include <platform/input.h>
#include <platform/sdl2.h>
#include <platform/window.h>
// Event
#include <event/event_bus.h>
#include <event/events.h>
// Utils
#include <utils/logger.h>
#include <utils/random.h>
// Application
#include <app/application.h>
#ifdef __SWITCH__
#include <switch.h>
#endif