Magic_Game/src/kiwano/kiwano.h

149 lines
3.2 KiB
C
Raw Normal View History

2019-04-11 14:40:54 +08:00
// Copyright (c) 2016-2018 Kiwano - Nomango
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// Website: https://www.kiwanoengine.com
// Source Code: https://github.com/KiwanoEngine/Kiwano
//
#pragma once
#include "macros.h"
//
2019-08-13 21:16:38 +08:00
// core
//
2019-08-13 21:16:38 +08:00
#include "core/vector.hpp"
#include "core/string.hpp"
#include "core/core.h"
#include "core/Function.hpp"
#include "core/intrusive_list.hpp"
#include "core/intrusive_ptr.hpp"
#include "core/noncopyable.hpp"
#include "core/singleton.hpp"
#include "core/basic_json.hpp"
//
// math
//
2019-09-10 11:50:19 +08:00
#include "math/constants.h"
#include "math/scalar.h"
#include "math/ease.h"
#include "math/Vec2.hpp"
#include "math/rand.h"
#include "math/Matrix.hpp"
//
2019-08-16 00:50:54 +08:00
// renderer
//
2019-08-16 10:12:34 +08:00
#include "renderer/Color.h"
#include "renderer/Font.h"
2019-08-21 16:33:41 +08:00
#include "renderer/Texture.h"
#include "renderer/GifImage.h"
2019-08-16 00:50:54 +08:00
#include "renderer/TextLayout.h"
#include "renderer/Geometry.h"
2019-08-16 10:12:34 +08:00
#include "renderer/LayerArea.h"
2019-08-21 16:33:41 +08:00
#include "renderer/TextureCache.h"
2019-08-16 00:50:54 +08:00
#include "renderer/Renderer.h"
//
// base
//
2019-08-12 14:51:54 +08:00
#include "base/time.h"
2019-08-14 21:52:49 +08:00
#include "base/Window.h"
#include "base/input.h"
#include "base/Director.h"
2019-08-14 21:52:49 +08:00
#include "base/Logger.h"
2019-08-13 21:16:38 +08:00
#include "base/SmartPtr.hpp"
2019-08-18 10:23:54 +08:00
#include "base/ObjectBase.h"
#include "base/Event.hpp"
#include "base/EventListener.h"
#include "base/EventDispatcher.h"
#include "base/Timer.h"
#include "base/TimerManager.h"
#include "base/AsyncTask.h"
2019-04-14 22:37:05 +08:00
#include "base/Resource.h"
2019-08-16 00:50:54 +08:00
//
// 2d
//
2019-08-16 10:12:34 +08:00
2019-08-20 19:32:36 +08:00
#include "2d/Transform.h"
#include "2d/TextStyle.hpp"
#include "2d/Frame.h"
#include "2d/FrameSequence.h"
#include "2d/action/Action.h"
#include "2d/action/ActionGroup.h"
#include "2d/action/ActionTween.h"
#include "2d/action/ActionWalk.h"
#include "2d/action/ActionDelay.h"
#include "2d/action/Animation.h"
#include "2d/action/ActionHelper.h"
#include "2d/action/ActionManager.h"
#include "2d/Transition.h"
#include "2d/Actor.h"
#include "2d/Stage.h"
#include "2d/Layer.h"
#include "2d/Sprite.h"
2019-07-31 16:22:33 +08:00
#include "2d/GifSprite.h"
#include "2d/Text.h"
#include "2d/Canvas.h"
#include "2d/ShapeActor.h"
#include "2d/DebugActor.h"
2019-08-16 00:50:54 +08:00
//
// platform
//
#include "platform/modules.h"
#include "platform/Application.h"
2019-08-16 00:50:54 +08:00
//
// utils
//
2019-10-11 21:12:29 +08:00
#include "utils/FileSystem.h"
#include "utils/LocalStorage.h"
#include "utils/ResourceCache.h"
//
// ui
//
#include "ui/Button.h"
#include "ui/Menu.h"