150 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
| // 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 <kiwano/macros.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // core
 | |
| //
 | |
| 
 | |
| #include <kiwano/core/vector.hpp>
 | |
| #include <kiwano/core/string.hpp>
 | |
| #include <kiwano/core/any.hpp>
 | |
| #include <kiwano/core/function.hpp>
 | |
| #include <kiwano/core/intrusive_list.hpp>
 | |
| #include <kiwano/core/intrusive_ptr.hpp>
 | |
| #include <kiwano/core/noncopyable.hpp>
 | |
| #include <kiwano/core/singleton.hpp>
 | |
| #include <kiwano/core/basic_json.hpp>
 | |
| #include <kiwano/core/core.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // math
 | |
| //
 | |
| 
 | |
| #include <kiwano/math/constants.h>
 | |
| #include <kiwano/math/scalar.h>
 | |
| #include <kiwano/math/ease.h>
 | |
| #include <kiwano/math/Vec2.hpp>
 | |
| #include <kiwano/math/rand.h>
 | |
| #include <kiwano/math/Matrix.hpp>
 | |
| 
 | |
| 
 | |
| //
 | |
| // renderer
 | |
| //
 | |
| 
 | |
| #include <kiwano/renderer/Color.h>
 | |
| #include <kiwano/renderer/Font.h>
 | |
| #include <kiwano/renderer/Texture.h>
 | |
| #include <kiwano/renderer/GifImage.h>
 | |
| #include <kiwano/renderer/TextLayout.h>
 | |
| #include <kiwano/renderer/Geometry.h>
 | |
| #include <kiwano/renderer/LayerArea.h>
 | |
| #include <kiwano/renderer/TextureCache.h>
 | |
| #include <kiwano/renderer/Renderer.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // base
 | |
| //
 | |
| 
 | |
| #include <kiwano/base/time.h>
 | |
| #include <kiwano/base/Window.h>
 | |
| #include <kiwano/base/input.h>
 | |
| #include <kiwano/base/Director.h>
 | |
| #include <kiwano/base/Logger.h>
 | |
| #include <kiwano/base/SmartPtr.hpp>
 | |
| #include <kiwano/base/ObjectBase.h>
 | |
| #include <kiwano/base/Event.hpp>
 | |
| #include <kiwano/base/EventListener.h>
 | |
| #include <kiwano/base/EventDispatcher.h>
 | |
| #include <kiwano/base/Timer.h>
 | |
| #include <kiwano/base/TimerManager.h>
 | |
| #include <kiwano/base/AsyncTask.h>
 | |
| #include <kiwano/base/Resource.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // 2d
 | |
| //
 | |
| 
 | |
| 
 | |
| #include <kiwano/2d/Transform.h>
 | |
| #include <kiwano/2d/TextStyle.hpp>
 | |
| 
 | |
| #include <kiwano/2d/Frame.h>
 | |
| #include <kiwano/2d/FrameSequence.h>
 | |
| 
 | |
| #include <kiwano/2d/action/Action.h>
 | |
| #include <kiwano/2d/action/ActionGroup.h>
 | |
| #include <kiwano/2d/action/ActionTween.h>
 | |
| #include <kiwano/2d/action/ActionWalk.h>
 | |
| #include <kiwano/2d/action/ActionDelay.h>
 | |
| #include <kiwano/2d/action/Animation.h>
 | |
| #include <kiwano/2d/action/ActionHelper.h>
 | |
| #include <kiwano/2d/action/ActionManager.h>
 | |
| 
 | |
| #include <kiwano/2d/Transition.h>
 | |
| 
 | |
| #include <kiwano/2d/Actor.h>
 | |
| #include <kiwano/2d/Stage.h>
 | |
| #include <kiwano/2d/Layer.h>
 | |
| #include <kiwano/2d/Sprite.h>
 | |
| #include <kiwano/2d/GifSprite.h>
 | |
| #include <kiwano/2d/Text.h>
 | |
| #include <kiwano/2d/Canvas.h>
 | |
| #include <kiwano/2d/ShapeActor.h>
 | |
| #include <kiwano/2d/DebugActor.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // platform
 | |
| //
 | |
| 
 | |
| #include <kiwano/platform/modules.h>
 | |
| #include <kiwano/platform/Application.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // utils
 | |
| //
 | |
| 
 | |
| #include <kiwano/utils/FileSystem.h>
 | |
| #include <kiwano/utils/LocalStorage.h>
 | |
| #include <kiwano/utils/ResourceCache.h>
 | |
| 
 | |
| 
 | |
| //
 | |
| // ui
 | |
| //
 | |
| 
 | |
| #include <kiwano/ui/Button.h>
 | |
| #include <kiwano/ui/Menu.h>
 |