├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── benchmark.py │ ├── generate-lint-report.py │ ├── main.yaml │ ├── master.yaml │ ├── read-lint-report.py │ └── update-charts.py ├── .gitignore ├── .gitmodules ├── Assets ├── CrazyCanvas.ico ├── Meshes │ ├── Grenade.glb │ ├── Gun │ │ ├── ArmsAnimation.glb │ │ ├── FirstPersonGun.glb │ │ ├── Gun.glb │ │ ├── WeaponLiquid.glb │ │ ├── WeaponLiquidPaint.glb │ │ └── WeaponLiquidWater.glb │ ├── MeshletCache │ │ └── Marching Cubes Mesh 0 │ ├── Player │ │ ├── Character.fbx │ │ ├── Idle.glb │ │ ├── IdleRightUV.glb │ │ ├── Run.glb │ │ ├── RunBackward.glb │ │ ├── RunBackwardMirrored.glb │ │ ├── RunMirrored.glb │ │ ├── StrafeLeft.glb │ │ └── StrafeRight.glb │ ├── Robot │ │ ├── Robot.mtl │ │ ├── Robot.obj │ │ ├── Running.fbx │ │ ├── Standard Walk.fbx │ │ └── Textures │ │ │ ├── BH-2_SpecularSmoothness.png │ │ │ ├── robot_albedo.png │ │ │ └── robot_normal.png │ ├── Roller.glb │ └── sphere.obj ├── NoesisGUI │ ├── Fonts │ │ ├── Bitter-Regular.ttf │ │ ├── Exo2-Regular.otf │ │ ├── Foo.ttf │ │ ├── K22 Ambelyn Condensed.ttf │ │ ├── LCDMono2.ttf │ │ ├── LetMeRide.ttf │ │ ├── Oxanium-SemiBold.ttf │ │ ├── Robaga Rounded Regular.otf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── TwemojiMozilla.ttf │ │ ├── WeblySleek_UI_Normal.ttf │ │ └── gogono_cocoa_mochi.ttf │ ├── Textures │ │ ├── Crosshair.png │ │ ├── CrosshairHit.png │ │ ├── Grenade.png │ │ ├── HealthBorderNew.png │ │ ├── HealthPlateNew.png │ │ ├── HealthRectNew.png │ │ ├── HitFriendlyIndicator.png │ │ ├── HitIndicator.png │ │ ├── PaintAmmo │ │ │ ├── PaintBoardBlue.png │ │ │ ├── PaintBoardGreen.png │ │ │ ├── PaintBoardPurple.png │ │ │ ├── PaintBoardRed.png │ │ │ └── PaintBoardYellow.png │ │ ├── Roller.png │ │ ├── ScoreHolder.png │ │ ├── ScoreHolder2.png │ │ ├── Thumbnails │ │ │ ├── Fun Factory.png │ │ │ └── The Mines.png │ │ ├── WaterBoard.png │ │ ├── arrow.png │ │ ├── checkmark.png │ │ ├── logo.png │ │ └── splashes │ │ │ ├── splash_blue.png │ │ │ ├── splash_green.png │ │ │ ├── splash_orange.png │ │ │ ├── splash_pink.png │ │ │ └── splash_red.png │ └── Xaml │ │ ├── CountdownGUI.xaml │ │ ├── DamageIndicatorGUI.xaml │ │ ├── EnemyHitIndicatorGUI.xaml │ │ ├── EscapeMenuGUI.xaml │ │ ├── GameOverGUI.xaml │ │ ├── HUD.xaml │ │ ├── KillFeedGUI.xaml │ │ ├── Lobby.xaml │ │ ├── MainMenu.xaml │ │ ├── Multiplayer.xaml │ │ ├── PromptGUI.xaml │ │ ├── ScoreBoardGUI.xaml │ │ └── SettingsGUI.xaml ├── RenderGraphs │ ├── RT_DEFERRED_PBR.lrg │ ├── RT_DEFERRED_PBR_MESH.lrg │ ├── RT_RQ_DEFERRED_PBR.lrg │ ├── RT_RQ_DEFERRED_PBR_MESH.lrg │ └── SERVER.lrg ├── Shaders │ ├── Animation │ │ └── Skinning.comp │ ├── Blur.glsl │ ├── ComputeHealth.comp │ ├── Defines.glsl │ ├── FirstPerson │ │ ├── Weapon.frag │ │ ├── Weapon.vert │ │ ├── WeaponLiquid.frag │ │ └── WeaponLiquid.vert │ ├── Geometry │ │ ├── Geom.frag │ │ ├── Geom.mesh │ │ ├── Geom.vert │ │ ├── GeomMesh.frag │ │ ├── GeomMeshPaint.frag │ │ ├── GeomMeshPaint.mesh │ │ ├── GeomMeshPaint.vert │ │ ├── GeomPlayer.frag │ │ └── Wireframe.geom │ ├── Helpers.glsl │ ├── Helpers │ │ ├── Blit.frag │ │ ├── Cube.vert │ │ └── FullscreenQuad.vert │ ├── ImGui │ │ ├── ImGuiHelpers.glsl │ │ ├── ImGuiPixel.frag │ │ └── ImGuiVertex.vert │ ├── LineRenderer │ │ ├── LineRendererPixel.frag │ │ └── LineRendererVertex.vert │ ├── Material │ │ ├── CombineMaterialAOSeperateMetRoughCombined.comp │ │ └── CombineMaterialAllSeperate.comp │ ├── MeshPaintFunc.glsl │ ├── MeshPaintHelper.glsl │ ├── MeshPainting │ │ ├── MeshPaintUpdater.comp │ │ ├── Unwrap.frag │ │ └── Unwrap.vert │ ├── NoesisGUI │ │ ├── NoesisGUI.frag │ │ ├── NoesisGUI.vert │ │ └── NoesisInclude.glsl │ ├── Noise.glsl │ ├── Particles │ │ ├── CombineParticleAlbedo.frag │ │ ├── Particle.frag │ │ ├── Particle.vert │ │ ├── ParticleCollider.comp │ │ ├── ParticleCreation.comp │ │ └── ParticleUpdate.comp │ ├── Players │ │ ├── Players.frag │ │ ├── Players.mesh │ │ └── Players.vert │ ├── PostProcess │ │ ├── FXAA.frag │ │ ├── TAA.frag │ │ └── TAA_accumulation.frag │ ├── Projectiles │ │ ├── MCTables.glsl │ │ ├── MarchingCubesDensity.comp │ │ ├── MarchingCubesGradient.comp │ │ └── MarchingCubesMeshGen.comp │ ├── RayTracing │ │ ├── BxDF.glsl │ │ ├── GaussianDenoiser.comp │ │ ├── ParticleAnyHit.rahit │ │ ├── ParticleClosestHit.rchit │ │ ├── PrimaryClosestHit.rchit │ │ ├── PrimaryMiss.rmiss │ │ ├── RayTracingInclude.glsl │ │ ├── Raygen.rgen │ │ ├── RaygenRQ.rgen │ │ └── SpatioTemporalReflectionsDenoiser.comp │ ├── Reflections.glsl │ ├── Sampling.glsl │ ├── Shading │ │ ├── Shading.frag │ │ └── ShadingRQ.frag │ ├── ShadowMap │ │ ├── DirLShadowMap.frag │ │ ├── DirLShadowMap.vert │ │ ├── PointLShadowMap.frag │ │ └── PointLShadowMap.vert │ ├── Skybox │ │ ├── CubemapGen.comp │ │ ├── CubemapHelper.glsl │ │ ├── DiffuseCubemapFilter.comp │ │ ├── IntegrationLUTGen.comp │ │ ├── Skybox.frag │ │ └── SpecularCubemapFilter.comp │ └── Tessellation │ │ ├── Output.geom │ │ ├── Passthrough.frag │ │ ├── Passthrough.tesc │ │ ├── Passthrough.tese │ │ ├── Passthrough.vert │ │ └── Tessellator.comp ├── Sounds │ ├── Countdown │ │ ├── five.wav │ │ ├── four.wav │ │ ├── one.wav │ │ ├── start.mp3 │ │ ├── three.wav │ │ └── two.wav │ ├── MainMenuCC.mp3 │ ├── Player │ │ ├── DeathSound.mp3 │ │ ├── HitSound0.mp3 │ │ ├── HitSound1.mp3 │ │ ├── Ping.mp3 │ │ ├── jump.wav │ │ ├── landing.wav │ │ └── step.wav │ └── Weapon │ │ ├── Shootsound.mp3 │ │ └── WaterSound.mp3 ├── Textures │ ├── LUTs │ │ └── BlueNoise │ │ │ └── 256_256 │ │ │ ├── HDR_RGBA_0000.png │ │ │ ├── HDR_RGBA_0001.png │ │ │ ├── HDR_RGBA_0002.png │ │ │ ├── HDR_RGBA_0003.png │ │ │ ├── HDR_RGBA_0004.png │ │ │ ├── HDR_RGBA_0005.png │ │ │ ├── HDR_RGBA_0006.png │ │ │ ├── HDR_RGBA_0007.png │ │ │ ├── HDR_RGBA_0008.png │ │ │ ├── HDR_RGBA_0009.png │ │ │ ├── HDR_RGBA_0010.png │ │ │ ├── HDR_RGBA_0011.png │ │ │ ├── HDR_RGBA_0012.png │ │ │ ├── HDR_RGBA_0013.png │ │ │ ├── HDR_RGBA_0014.png │ │ │ └── HDR_RGBA_0015.png │ ├── MeshPainting │ │ └── BrushMaskV3.png │ ├── Particles │ │ └── ParticleAtlas.png │ ├── Player │ │ └── CharacterAlbedo.png │ ├── Skybox │ │ └── CartoonSkyboxHomemade.hdr │ └── fmod │ │ ├── FMOD Logo Guidelines.pdf │ │ ├── fmod_logo_black.png │ │ └── fmod_logo_white.png ├── World │ ├── LevelModules │ │ ├── BunnyHop.glb │ │ ├── CanvasMap.glb │ │ └── TheMines.glb │ └── levels.json └── guy.ico ├── CodeStandard.MD ├── CrazyCanvas ├── Include │ ├── Chat │ │ └── ChatManager.h │ ├── CrazyCanvas.h │ ├── ECS │ │ ├── Components │ │ │ ├── GUI │ │ │ │ └── ProjectedGUIComponent.h │ │ │ ├── Match │ │ │ │ ├── FlagComponent.h │ │ │ │ └── ShowerComponent.h │ │ │ ├── Misc │ │ │ │ └── DestructionComponent.h │ │ │ ├── Multiplayer │ │ │ │ └── PacketComponent.h │ │ │ ├── Player │ │ │ │ ├── GrenadeComponent.h │ │ │ │ ├── HealthComponent.h │ │ │ │ ├── Player.h │ │ │ │ ├── ProjectileComponent.h │ │ │ │ └── WeaponComponent.h │ │ │ └── World │ │ │ │ ├── LevelRegisteredComponent.h │ │ │ │ └── SpectateComponent.h │ │ └── Systems │ │ │ ├── Camera │ │ │ └── SpectateCameraSystem.h │ │ │ ├── GUI │ │ │ ├── HUDSystem.h │ │ │ └── NameplateSystem.h │ │ │ ├── Match │ │ │ ├── ClientFlagSystem.h │ │ │ ├── ClientShowerSystem.h │ │ │ ├── FlagSystemBase.h │ │ │ ├── ServerFlagSystem.h │ │ │ ├── ServerShowerSystem.h │ │ │ └── ShowerSystemBase.h │ │ │ ├── Misc │ │ │ └── DestructionSystem.h │ │ │ ├── Multiplayer │ │ │ ├── Client │ │ │ │ ├── NetworkPositionSystem.h │ │ │ │ ├── ReplayBaseSystem.h │ │ │ │ └── ReplayManagerSystem.h │ │ │ └── PacketTranscoderSystem.h │ │ │ └── Player │ │ │ ├── BenchmarkSystem.h │ │ │ ├── GrenadeSystem.h │ │ │ ├── HealthSystem.h │ │ │ ├── HealthSystemClient.h │ │ │ ├── HealthSystemServer.h │ │ │ ├── PlayerAnimationSystem.h │ │ │ ├── WeaponSystem.h │ │ │ ├── WeaponSystemClient.h │ │ │ └── WeaponSystemServer.h │ ├── EventHandlers │ │ ├── AudioEffectHandler.h │ │ └── PingHandler.h │ ├── Events │ │ ├── ChatEvents.h │ │ ├── GameplayEvents.h │ │ ├── MatchEvents.h │ │ ├── PacketEvents.h │ │ ├── PlayerEvents.h │ │ └── ServerEvents.h │ ├── GUI │ │ ├── CountdownGUI.h │ │ ├── DamageIndicatorGUI.h │ │ ├── EnemyHitIndicatorGUI.h │ │ ├── EscapeMenuGUI.h │ │ ├── GUIHelpers.h │ │ ├── GameOverGUI.h │ │ ├── HUDGUI.h │ │ ├── KillFeedGUI.h │ │ ├── LobbyGUI.h │ │ ├── MainMenuGUI.h │ │ ├── MultiplayerGUI.h │ │ ├── PromptGUI.h │ │ ├── SavedServerGUI.h │ │ ├── ScoreBoardGUI.h │ │ └── SettingsGUI.h │ ├── Lobby │ │ ├── EServerState.h │ │ ├── Player.h │ │ ├── PlayerManagerBase.h │ │ ├── PlayerManagerClient.h │ │ ├── PlayerManagerServer.h │ │ ├── ServerFileStorage.h │ │ ├── ServerInfo.h │ │ └── ServerManager.h │ ├── Match │ │ ├── Match.h │ │ ├── MatchBase.h │ │ ├── MatchClient.h │ │ ├── MatchGameMode.h │ │ └── MatchServer.h │ ├── MeshPaint │ │ ├── MeshPaintHandler.h │ │ └── MeshPaintTypes.h │ ├── Multiplayer │ │ ├── ClientHelper.h │ │ ├── MultiplayerBase.h │ │ ├── MultiplayerClient.h │ │ ├── MultiplayerServer.h │ │ ├── Packet │ │ │ ├── Packet.h │ │ │ ├── PacketCreateLevelObject.h │ │ │ ├── PacketDeleteLevelObject.h │ │ │ ├── PacketFlagEdited.h │ │ │ ├── PacketGameOver.h │ │ │ ├── PacketGameSettings.h │ │ │ ├── PacketGrenadeThrown.h │ │ │ ├── PacketHealthChanged.h │ │ │ ├── PacketJoin.h │ │ │ ├── PacketLeave.h │ │ │ ├── PacketMatchBegin.h │ │ │ ├── PacketMatchReady.h │ │ │ ├── PacketMatchStart.h │ │ │ ├── PacketPlayerAction.h │ │ │ ├── PacketPlayerActionResponse.h │ │ │ ├── PacketPlayerAliveChanged.h │ │ │ ├── PacketPlayerHost.h │ │ │ ├── PacketPlayerPing.h │ │ │ ├── PacketPlayerReady.h │ │ │ ├── PacketPlayerScore.h │ │ │ ├── PacketPlayerState.h │ │ │ ├── PacketPositionPing.h │ │ │ ├── PacketProjectileHit.h │ │ │ ├── PacketResetPlayerTexture.h │ │ │ ├── PacketSessionSettingChanged.h │ │ │ ├── PacketTeamScored.h │ │ │ ├── PacketType.h │ │ │ └── PacketWeaponFired.h │ │ ├── ServerHelper.h │ │ └── SingleplayerInitializer.h │ ├── Physics │ │ ├── CollisionGroups.h │ │ └── PhysicsEvents.h │ ├── RenderStages │ │ ├── FirstPersonWeaponRenderer.h │ │ ├── HealthCompute.h │ │ ├── MeshPaintUpdater.h │ │ ├── PlayerRenderer.h │ │ └── Projectiles │ │ │ └── ProjectileRenderer.h │ ├── Resources │ │ └── ResourceCatalog.h │ ├── States │ │ ├── BenchmarkState.h │ │ ├── LobbyState.h │ │ ├── MainMenuState.h │ │ ├── MultiplayerState.h │ │ ├── PlaySessionState.h │ │ ├── SandboxState.h │ │ └── ServerState.h │ ├── Teams │ │ └── TeamHelper.h │ └── World │ │ ├── Level.h │ │ ├── LevelManager.h │ │ ├── LevelModule.h │ │ ├── LevelObjectCreator.h │ │ ├── Player │ │ ├── CharacterControllerHelper.h │ │ ├── Client │ │ │ ├── PlayerForeignSystem.h │ │ │ ├── PlayerLocalSystem.h │ │ │ └── PlayerSoundHelper.h │ │ ├── PlayerActionSystem.h │ │ ├── PlayerGameState.h │ │ ├── PlayerSettings.h │ │ └── Server │ │ │ └── PlayerRemoteSystem.h │ │ ├── SessionSettings.h │ │ ├── SessionSettingsTypes.h │ │ └── World.h ├── Saved_Servers.json ├── Source │ ├── Chat │ │ └── ChatManager.cpp │ ├── CrazyCanvas.cpp │ ├── ECS │ │ └── Systems │ │ │ ├── Camera │ │ │ └── SpectateCameraSystem.cpp │ │ │ ├── GUI │ │ │ ├── HUDSystem.cpp │ │ │ └── NameplateSystem.cpp │ │ │ ├── Match │ │ │ ├── ClientFlagSystem.cpp │ │ │ ├── ClientShowerSystem.cpp │ │ │ ├── FlagSystemBase.cpp │ │ │ ├── ServerFlagSystem.cpp │ │ │ ├── ServerShowerSystem.cpp │ │ │ └── ShowerSystemBase.cpp │ │ │ ├── Misc │ │ │ └── DestructionSystem.cpp │ │ │ ├── Multiplayer │ │ │ ├── Client │ │ │ │ ├── NetworkPositionSystem.cpp │ │ │ │ ├── ReplayBaseSystem.cpp │ │ │ │ └── ReplayManagerSystem.cpp │ │ │ └── PacketTranscoderSystem.cpp │ │ │ └── Player │ │ │ ├── BenchmarkSystem.cpp │ │ │ ├── GrenadeSystem.cpp │ │ │ ├── HealthSystem.cpp │ │ │ ├── HealthSystemClient.cpp │ │ │ ├── HealthSystemServer.cpp │ │ │ ├── PlayerAnimationSystem.cpp │ │ │ ├── WeaponSystem.cpp │ │ │ ├── WeaponSystemClient.cpp │ │ │ └── WeaponSystemServer.cpp │ ├── EventHandlers │ │ ├── AudioEffectHandler.cpp │ │ └── PingHandler.cpp │ ├── GUI │ │ ├── CountdownGUI.cpp │ │ ├── DamageIndicatorGUI.cpp │ │ ├── EnemyHitIndicatorGUI.cpp │ │ ├── EscapeMenuGUI.cpp │ │ ├── GameOverGUI.cpp │ │ ├── HUDGUI.cpp │ │ ├── KillFeedGUI.cpp │ │ ├── LobbyGUI.cpp │ │ ├── MainMenuGUI.cpp │ │ ├── MultiplayerGUI.cpp │ │ ├── PromptGUI.cpp │ │ ├── ScoreBoardGUI.cpp │ │ └── SettingsGUI.cpp │ ├── Lobby │ │ ├── Player.cpp │ │ ├── PlayerManagerBase.cpp │ │ ├── PlayerManagerClient.cpp │ │ ├── PlayerManagerServer.cpp │ │ ├── ServerFileStorage.cpp │ │ └── ServerManager.cpp │ ├── Match │ │ ├── Match.cpp │ │ ├── MatchBase.cpp │ │ ├── MatchClient.cpp │ │ └── MatchServer.cpp │ ├── MeshPaint │ │ └── MeshPaintHandler.cpp │ ├── Multiplayer │ │ ├── ClientHelper.cpp │ │ ├── MultiplayerBase.cpp │ │ ├── MultiplayerClient.cpp │ │ ├── MultiplayerServer.cpp │ │ ├── PacketType.cpp │ │ ├── ServerHelper.cpp │ │ └── SingleplayerInitializer.cpp │ ├── RenderStages │ │ ├── FirstPersonWeaponRenderer.cpp │ │ ├── HealthCompute.cpp │ │ ├── MeshPaintUpdater.cpp │ │ ├── PlayerRenderer.cpp │ │ └── Projectiles │ │ │ └── ProjectileRenderer.cpp │ ├── Resources │ │ └── ResourceCatalog.cpp │ ├── States │ │ ├── BenchmarkState.cpp │ │ ├── LobbyState.cpp │ │ ├── MainMenuState.cpp │ │ ├── MultiplayerState.cpp │ │ ├── PlaySessionState.cpp │ │ ├── SandboxState.cpp │ │ └── ServerState.cpp │ ├── Teams │ │ └── TeamHelper.cpp │ └── World │ │ ├── Level.cpp │ │ ├── LevelManager.cpp │ │ ├── LevelModule.cpp │ │ ├── LevelObjectCreator.cpp │ │ ├── Player │ │ ├── CharacterControllerHelper.cpp │ │ ├── Client │ │ │ ├── PlayerForeignSystem.cpp │ │ │ ├── PlayerLocalSystem.cpp │ │ │ └── PlayerSoundHelper.cpp │ │ ├── PlayerActionSystem.cpp │ │ └── Server │ │ │ └── PlayerRemoteSystem.cpp │ │ └── SessionSettings.cpp ├── engine_config_crazycanvas.json ├── engine_config_sandbox.json ├── engine_config_server.json └── key_bindings.json ├── CrazyCanvasInstall.iss ├── Dependencies ├── NoesisGUI │ ├── Include │ │ ├── NoesisLicense.h │ │ ├── NoesisPCH.h │ │ ├── NsCore │ │ │ ├── ArrayRef.h │ │ │ ├── ArrayRef.inl │ │ │ ├── AssignableFromType.h │ │ │ ├── Atomic.h │ │ │ ├── Atomic.inl │ │ │ ├── BaseComponent.h │ │ │ ├── BaseObject.h │ │ │ ├── BaseRefCounted.h │ │ │ ├── BaseRefCounted.inl │ │ │ ├── Boxing.h │ │ │ ├── Boxing.inl │ │ │ ├── BuildSettings.h │ │ │ ├── Category.h │ │ │ ├── CharConverter.h │ │ │ ├── CompilerSettings.h │ │ │ ├── CompilerTools.h │ │ │ ├── Converter.h │ │ │ ├── Converter.inl │ │ │ ├── CpuProfiler.h │ │ │ ├── Delegate.h │ │ │ ├── Delegate.inl │ │ │ ├── DynamicCast.h │ │ │ ├── DynamicCast.inl │ │ │ ├── EnumConverter.h │ │ │ ├── EnumConverter.inl │ │ │ ├── Error.h │ │ │ ├── Factory.h │ │ │ ├── Find.h │ │ │ ├── Find.inl │ │ │ ├── Hash.h │ │ │ ├── Hash.inl │ │ │ ├── HashMap.h │ │ │ ├── HashMap.inl │ │ │ ├── HighResTimer.h │ │ │ ├── HighResTimer.inl │ │ │ ├── IdOf.h │ │ │ ├── IdOf.inl │ │ │ ├── Init.h │ │ │ ├── Interface.h │ │ │ ├── KernelApi.h │ │ │ ├── Log.h │ │ │ ├── Math.h │ │ │ ├── Math.inl │ │ │ ├── Memory.h │ │ │ ├── MetaData.h │ │ │ ├── MetaData.inl │ │ │ ├── Noesis.h │ │ │ ├── Nullable.h │ │ │ ├── Nullable.inl │ │ │ ├── NullableApi.h │ │ │ ├── NullableConverter.h │ │ │ ├── NullableConverter.inl │ │ │ ├── NumericConverter.h │ │ │ ├── Package.h │ │ │ ├── Pair.h │ │ │ ├── Pair.inl │ │ │ ├── PlatformSettings.h │ │ │ ├── PoolAllocator.h │ │ │ ├── PoolAllocator.inl │ │ │ ├── Ptr.h │ │ │ ├── Ptr.inl │ │ │ ├── Reflection.h │ │ │ ├── ReflectionDeclare.h │ │ │ ├── ReflectionDeclareEnum.h │ │ │ ├── ReflectionHelper.h │ │ │ ├── ReflectionHelper.inl │ │ │ ├── ReflectionImplement.h │ │ │ ├── ReflectionImplementEmpty.h │ │ │ ├── ReflectionImplementEnum.h │ │ │ ├── RegisterComponent.h │ │ │ ├── RegisterComponent.inl │ │ │ ├── Sort.h │ │ │ ├── Sort.inl │ │ │ ├── String.h │ │ │ ├── String.inl │ │ │ ├── StringConverter.h │ │ │ ├── StringFwd.h │ │ │ ├── StringUtils.h │ │ │ ├── StringUtils.inl │ │ │ ├── Symbol.h │ │ │ ├── Symbol.inl │ │ │ ├── SymbolConverter.h │ │ │ ├── Type.h │ │ │ ├── TypeClass.h │ │ │ ├── TypeClassBuilder.h │ │ │ ├── TypeClassCreator.h │ │ │ ├── TypeClassCreator.inl │ │ │ ├── TypeClassCreatorEmpty.h │ │ │ ├── TypeClassCreatorEmpty.inl │ │ │ ├── TypeCollection.h │ │ │ ├── TypeConverter.h │ │ │ ├── TypeConverterApi.h │ │ │ ├── TypeEnum.h │ │ │ ├── TypeEnumCreator.h │ │ │ ├── TypeEnumCreator.inl │ │ │ ├── TypeEnumHelper.h │ │ │ ├── TypeEnumImpl.h │ │ │ ├── TypeEnumImpl.inl │ │ │ ├── TypeMeta.h │ │ │ ├── TypeMeta.inl │ │ │ ├── TypeMetaData.h │ │ │ ├── TypeOf.h │ │ │ ├── TypeOf.inl │ │ │ ├── TypePointer.h │ │ │ ├── TypePointer.inl │ │ │ ├── TypeProperty.h │ │ │ ├── TypeProperty.inl │ │ │ ├── TypePropertyImpl.h │ │ │ ├── TypePropertyImpl.inl │ │ │ ├── TypePropertyUtil.h │ │ │ ├── UTF8.h │ │ │ ├── UTF8.inl │ │ │ ├── ValueHelper.h │ │ │ ├── ValueHelper.inl │ │ │ ├── Vector.h │ │ │ ├── Vector.inl │ │ │ ├── VectorFwd.h │ │ │ └── Version.h │ │ ├── NsDrawing │ │ │ ├── Color.h │ │ │ ├── Color.inl │ │ │ ├── CornerRadius.h │ │ │ ├── CornerRadius.inl │ │ │ ├── Point.h │ │ │ ├── Point.inl │ │ │ ├── Rect.h │ │ │ ├── Rect.inl │ │ │ ├── SVGPath.h │ │ │ ├── Size.h │ │ │ ├── Size.inl │ │ │ ├── Thickness.h │ │ │ ├── Thickness.inl │ │ │ └── TypesApi.h │ │ ├── NsGui │ │ │ ├── AdornerDecorator.h │ │ │ ├── Animatable.h │ │ │ ├── AnimationApi.h │ │ │ ├── AnimationClock.h │ │ │ ├── AnimationTimeline.h │ │ │ ├── ApplicationCommands.h │ │ │ ├── ArcSegment.h │ │ │ ├── BackEase.h │ │ │ ├── BaseAnimation.h │ │ │ ├── BaseBinding.h │ │ │ ├── BaseBindingExpression.h │ │ │ ├── BaseButton.h │ │ │ ├── BaseCollection.h │ │ │ ├── BaseCommand.h │ │ │ ├── BaseDefinition.h │ │ │ ├── BaseDictionary.h │ │ │ ├── BaseFreezableCollection.h │ │ │ ├── BaseGridViewRowPresenter.h │ │ │ ├── BaseKeyFrame.h │ │ │ ├── BaseMenu.h │ │ │ ├── BaseMultiValueConverter.h │ │ │ ├── BaseObservableCollection.h │ │ │ ├── BaseSetter.h │ │ │ ├── BaseTextBox.h │ │ │ ├── BaseTrigger.h │ │ │ ├── BaseUICollection.h │ │ │ ├── BaseValueConverter.h │ │ │ ├── BaseView.h │ │ │ ├── BeginStoryboard.h │ │ │ ├── BezierSegment.h │ │ │ ├── Binding.h │ │ │ ├── BindingExpression.h │ │ │ ├── BindingListener.h │ │ │ ├── BindingOperations.h │ │ │ ├── BitmapImage.h │ │ │ ├── BitmapSource.h │ │ │ ├── BlurEffect.h │ │ │ ├── Bold.h │ │ │ ├── BooleanAnimationUsingKeyFrames.h │ │ │ ├── BooleanKeyFrame.h │ │ │ ├── Border.h │ │ │ ├── BounceEase.h │ │ │ ├── BoxedFreezableCollection.h │ │ │ ├── BoxedFreezableCollection.inl │ │ │ ├── Brush.h │ │ │ ├── Brushes.h │ │ │ ├── BulletDecorator.h │ │ │ ├── Button.h │ │ │ ├── CachedFontProvider.h │ │ │ ├── CachedFontProviderApi.h │ │ │ ├── Canvas.h │ │ │ ├── CheckBox.h │ │ │ ├── CircleEase.h │ │ │ ├── Clock.h │ │ │ ├── ClockGroup.h │ │ │ ├── Collection.h │ │ │ ├── Collection.inl │ │ │ ├── CollectionView.h │ │ │ ├── CollectionViewSource.h │ │ │ ├── ColorAnimation.h │ │ │ ├── ColorAnimationUsingKeyFrames.h │ │ │ ├── ColorKeyFrame.h │ │ │ ├── Colors.h │ │ │ ├── ColumnDefinition.h │ │ │ ├── CombinedGeometry.h │ │ │ ├── ComboBox.h │ │ │ ├── ComboBoxItem.h │ │ │ ├── CommandBinding.h │ │ │ ├── CommandBinding.inl │ │ │ ├── CommandData.h │ │ │ ├── CommandData.inl │ │ │ ├── CommandManager.h │ │ │ ├── ComponentCommands.h │ │ │ ├── CompositeTransform.h │ │ │ ├── CompositeTransform3D.h │ │ │ ├── CompositionUnderline.h │ │ │ ├── Condition.h │ │ │ ├── ConditionListener.h │ │ │ ├── ContentControl.h │ │ │ ├── ContentPresenter.h │ │ │ ├── ContentPropertyMetaData.h │ │ │ ├── ContextMenu.h │ │ │ ├── ContextMenuService.h │ │ │ ├── Control.h │ │ │ ├── ControlTemplate.h │ │ │ ├── ControllableStoryboardAction.h │ │ │ ├── ControlsApi.h │ │ │ ├── CoreApi.h │ │ │ ├── CubicEase.h │ │ │ ├── DashStyle.h │ │ │ ├── DataObject.h │ │ │ ├── DataTemplate.h │ │ │ ├── DataTemplateSelector.h │ │ │ ├── DataTrigger.h │ │ │ ├── Decorator.h │ │ │ ├── DependencyData.h │ │ │ ├── DependencyData.inl │ │ │ ├── DependencyObject.h │ │ │ ├── DependencyObject.inl │ │ │ ├── DependencyObjectValueData.h │ │ │ ├── DependencyProperty.h │ │ │ ├── DependencyProperty.inl │ │ │ ├── DependencySystemApi.h │ │ │ ├── DependsOnAttributeMetaData.h │ │ │ ├── DiscreteBooleanKeyFrame.h │ │ │ ├── DiscreteColorKeyFrame.h │ │ │ ├── DiscreteDoubleKeyFrame.h │ │ │ ├── DiscreteInt16KeyFrame.h │ │ │ ├── DiscreteInt32KeyFrame.h │ │ │ ├── DiscreteMatrixKeyFrame.h │ │ │ ├── DiscreteObjectKeyFrame.h │ │ │ ├── DiscretePointKeyFrame.h │ │ │ ├── DiscreteRectKeyFrame.h │ │ │ ├── DiscreteSizeKeyFrame.h │ │ │ ├── DiscreteStringKeyFrame.h │ │ │ ├── DiscreteThicknessKeyFrame.h │ │ │ ├── DispatcherObject.h │ │ │ ├── DockPanel.h │ │ │ ├── DoubleAnimation.h │ │ │ ├── DoubleAnimationUsingKeyFrames.h │ │ │ ├── DoubleKeyFrame.h │ │ │ ├── DragDrop.h │ │ │ ├── DrawingContext.h │ │ │ ├── DropShadowEffect.h │ │ │ ├── Duration.h │ │ │ ├── Duration.inl │ │ │ ├── EasingColorKeyFrame.h │ │ │ ├── EasingDoubleKeyFrame.h │ │ │ ├── EasingFunctionBase.h │ │ │ ├── EasingInt16KeyFrame.h │ │ │ ├── EasingInt32KeyFrame.h │ │ │ ├── EasingPointKeyFrame.h │ │ │ ├── EasingRectKeyFrame.h │ │ │ ├── EasingSizeKeyFrame.h │ │ │ ├── EasingThicknessKeyFrame.h │ │ │ ├── Effect.h │ │ │ ├── ElasticEase.h │ │ │ ├── Element.h │ │ │ ├── Ellipse.h │ │ │ ├── EllipseGeometry.h │ │ │ ├── Enums.h │ │ │ ├── EventTrigger.h │ │ │ ├── Events.h │ │ │ ├── Expander.h │ │ │ ├── ExponentialEase.h │ │ │ ├── Expression.h │ │ │ ├── FocusManager.h │ │ │ ├── FontFamily.h │ │ │ ├── FontProperties.h │ │ │ ├── FontProvider.h │ │ │ ├── FormattedText.h │ │ │ ├── FrameworkElement.h │ │ │ ├── FrameworkElement.inl │ │ │ ├── FrameworkPropertyMetadata.h │ │ │ ├── FrameworkPropertyMetadata.inl │ │ │ ├── FrameworkTemplate.h │ │ │ ├── Freezable.h │ │ │ ├── FreezableCollection.h │ │ │ ├── FreezableCollection.inl │ │ │ ├── FreezableEventReason.h │ │ │ ├── Geometry.h │ │ │ ├── GeometryGroup.h │ │ │ ├── GradientBrush.h │ │ │ ├── GradientStop.h │ │ │ ├── GradientStopCollection.h │ │ │ ├── Grid.h │ │ │ ├── GridLength.h │ │ │ ├── GridView.h │ │ │ ├── GridViewColumn.h │ │ │ ├── GridViewColumnHeader.h │ │ │ ├── GridViewHeaderRowPresenter.h │ │ │ ├── GridViewRowPresenter.h │ │ │ ├── GroupBox.h │ │ │ ├── HandoffBehavior.h │ │ │ ├── HeaderedContentControl.h │ │ │ ├── HeaderedItemsControl.h │ │ │ ├── HierarchicalDataTemplate.h │ │ │ ├── Hyperlink.h │ │ │ ├── Hyperlink.inl │ │ │ ├── ICollectionView.h │ │ │ ├── ICommand.h │ │ │ ├── ICommandSource.h │ │ │ ├── IComponentInitializer.h │ │ │ ├── IDictionary.h │ │ │ ├── IDictionaryIndexer.h │ │ │ ├── IEasingFunction.h │ │ │ ├── IItemContainerGenerator.h │ │ │ ├── ILayerManager.h │ │ │ ├── IList.h │ │ │ ├── IListIndexer.h │ │ │ ├── IMultiValueConverter.h │ │ │ ├── INameScope.h │ │ │ ├── INotifyCollectionChanged.h │ │ │ ├── INotifyDictionaryChanged.h │ │ │ ├── INotifyPropertyChanged.h │ │ │ ├── IPropertyValueConverter.h │ │ │ ├── IRecyclingItemContainerGenerator.h │ │ │ ├── IRenderProxyCreator.h │ │ │ ├── IRenderer.h │ │ │ ├── IScrollInfo.h │ │ │ ├── ISealable.h │ │ │ ├── IStoryboard.h │ │ │ ├── ITimeManager.h │ │ │ ├── IUITreeNode.h │ │ │ ├── IValueConverter.h │ │ │ ├── IView.h │ │ │ ├── Image.h │ │ │ ├── ImageBrush.h │ │ │ ├── ImageSource.h │ │ │ ├── Inline.h │ │ │ ├── InlineUIContainer.h │ │ │ ├── InputBinding.h │ │ │ ├── InputEnums.h │ │ │ ├── InputGesture.h │ │ │ ├── Int16Animation.h │ │ │ ├── Int16AnimationUsingKeyFrames.h │ │ │ ├── Int16KeyFrame.h │ │ │ ├── Int32Animation.h │ │ │ ├── Int32AnimationUsingKeyFrames.h │ │ │ ├── Int32KeyFrame.h │ │ │ ├── IntegrationAPI.h │ │ │ ├── IntegrationAPI.inl │ │ │ ├── Italic.h │ │ │ ├── ItemCollection.h │ │ │ ├── ItemContainerGenerator.h │ │ │ ├── ItemContainerGenerator.inl │ │ │ ├── ItemsControl.h │ │ │ ├── ItemsPanelTemplate.h │ │ │ ├── ItemsPresenter.h │ │ │ ├── KeyBinding.h │ │ │ ├── KeyGesture.h │ │ │ ├── KeySpline.h │ │ │ ├── KeyTime.h │ │ │ ├── KeyTime.inl │ │ │ ├── Keyboard.h │ │ │ ├── KeyboardNavigation.h │ │ │ ├── Label.h │ │ │ ├── LayerManager.h │ │ │ ├── Line.h │ │ │ ├── LineBreak.h │ │ │ ├── LineGeometry.h │ │ │ ├── LineSegment.h │ │ │ ├── LinearColorKeyFrame.h │ │ │ ├── LinearDoubleKeyFrame.h │ │ │ ├── LinearGradientBrush.h │ │ │ ├── LinearInt16KeyFrame.h │ │ │ ├── LinearInt32KeyFrame.h │ │ │ ├── LinearPointKeyFrame.h │ │ │ ├── LinearRectKeyFrame.h │ │ │ ├── LinearSizeKeyFrame.h │ │ │ ├── LinearThicknessKeyFrame.h │ │ │ ├── ListBox.h │ │ │ ├── ListBoxItem.h │ │ │ ├── ListView.h │ │ │ ├── ListViewItem.h │ │ │ ├── LogicalTreeHelper.h │ │ │ ├── MarkupExtension.h │ │ │ ├── MatrixAnimationUsingKeyFrames.h │ │ │ ├── MatrixKeyFrame.h │ │ │ ├── MatrixTransform.h │ │ │ ├── MatrixTransform3D.h │ │ │ ├── MemoryStream.h │ │ │ ├── MemoryStream.inl │ │ │ ├── Menu.h │ │ │ ├── MenuItem.h │ │ │ ├── MeshGeometry.h │ │ │ ├── Mouse.h │ │ │ ├── MultiBinding.h │ │ │ ├── MultiBindingExpression.h │ │ │ ├── MultiDataTrigger.h │ │ │ ├── MultiTrigger.h │ │ │ ├── NameScope.h │ │ │ ├── NameScopePropertyMetaData.h │ │ │ ├── ObjectAnimationUsingKeyFrames.h │ │ │ ├── ObjectKeyFrame.h │ │ │ ├── ObservableCollection.h │ │ │ ├── ObservableCollection.inl │ │ │ ├── Page.h │ │ │ ├── Panel.h │ │ │ ├── ParallelTimeline.h │ │ │ ├── PasswordBox.h │ │ │ ├── Path.h │ │ │ ├── PathExtensions.h │ │ │ ├── PathFigure.h │ │ │ ├── PathGeometry.h │ │ │ ├── PathSegment.h │ │ │ ├── PauseStoryboard.h │ │ │ ├── Pen.h │ │ │ ├── PointAnimation.h │ │ │ ├── PointAnimationUsingKeyFrames.h │ │ │ ├── PointKeyFrame.h │ │ │ ├── PolyBezierSegment.h │ │ │ ├── PolyLineSegment.h │ │ │ ├── PolyQuadraticBezierSegment.h │ │ │ ├── Popup.h │ │ │ ├── PowerEase.h │ │ │ ├── ProgressBar.h │ │ │ ├── PropertyMetadata.h │ │ │ ├── PropertyMetadata.inl │ │ │ ├── PropertyPath.h │ │ │ ├── ProviderValue.h │ │ │ ├── ProvidersApi.h │ │ │ ├── QuadraticBezierSegment.h │ │ │ ├── QuadraticEase.h │ │ │ ├── QuarticEase.h │ │ │ ├── QuinticEase.h │ │ │ ├── RadialGradientBrush.h │ │ │ ├── RadioButton.h │ │ │ ├── RangeBase.h │ │ │ ├── RectAnimation.h │ │ │ ├── RectAnimationUsingKeyFrames.h │ │ │ ├── RectKeyFrame.h │ │ │ ├── Rectangle.h │ │ │ ├── RectangleGeometry.h │ │ │ ├── RelativeSource.h │ │ │ ├── RenderOptions.h │ │ │ ├── RepeatBehavior.h │ │ │ ├── RepeatButton.h │ │ │ ├── ResourceDictionary.h │ │ │ ├── ResourceDictionary.inl │ │ │ ├── ResumeStoryboard.h │ │ │ ├── RotateTransform.h │ │ │ ├── RoutedCommand.h │ │ │ ├── RoutedEvent.h │ │ │ ├── RoutedEvent.inl │ │ │ ├── RoutedUICommand.h │ │ │ ├── RowDefinition.h │ │ │ ├── Run.h │ │ │ ├── ScaleTransform.h │ │ │ ├── ScrollBar.h │ │ │ ├── ScrollBar.inl │ │ │ ├── ScrollContentPresenter.h │ │ │ ├── ScrollViewer.h │ │ │ ├── ScrollViewer.inl │ │ │ ├── Selector.h │ │ │ ├── Selector.inl │ │ │ ├── Separator.h │ │ │ ├── Setter.h │ │ │ ├── Shape.h │ │ │ ├── SineEase.h │ │ │ ├── SizeAnimation.h │ │ │ ├── SizeAnimationUsingKeyFrames.h │ │ │ ├── SizeChangedInfo.h │ │ │ ├── SizeKeyFrame.h │ │ │ ├── SkewTransform.h │ │ │ ├── Slider.h │ │ │ ├── SolidColorBrush.h │ │ │ ├── Span.h │ │ │ ├── SplineColorKeyFrame.h │ │ │ ├── SplineDoubleKeyFrame.h │ │ │ ├── SplineInt16KeyFrame.h │ │ │ ├── SplineInt32KeyFrame.h │ │ │ ├── SplinePointKeyFrame.h │ │ │ ├── SplineRectKeyFrame.h │ │ │ ├── SplineSizeKeyFrame.h │ │ │ ├── SplineThicknessKeyFrame.h │ │ │ ├── StackPanel.h │ │ │ ├── StatusBar.h │ │ │ ├── StatusBarItem.h │ │ │ ├── StopStoryboard.h │ │ │ ├── Storyboard.h │ │ │ ├── Stream.h │ │ │ ├── StreamGeometry.h │ │ │ ├── StreamGeometryContext.h │ │ │ ├── StringAnimationUsingKeyFrames.h │ │ │ ├── StringKeyFrame.h │ │ │ ├── Style.h │ │ │ ├── TabControl.h │ │ │ ├── TabItem.h │ │ │ ├── TabPanel.h │ │ │ ├── TemplateBindingExpression.h │ │ │ ├── TemplateBindingExtension.h │ │ │ ├── TemplatePartMetaData.h │ │ │ ├── Text.h │ │ │ ├── TextBlock.h │ │ │ ├── TextBox.h │ │ │ ├── TextElement.h │ │ │ ├── TextProperties.h │ │ │ ├── TextureProvider.h │ │ │ ├── TextureSource.h │ │ │ ├── ThicknessAnimation.h │ │ │ ├── ThicknessAnimationUsingKeyFrames.h │ │ │ ├── ThicknessKeyFrame.h │ │ │ ├── Thumb.h │ │ │ ├── Thumb.inl │ │ │ ├── TickBar.h │ │ │ ├── TileBrush.h │ │ │ ├── TimeSpan.h │ │ │ ├── TimeSpan.inl │ │ │ ├── Timeline.h │ │ │ ├── TimelineGroup.h │ │ │ ├── ToggleButton.h │ │ │ ├── ToolBar.h │ │ │ ├── ToolBarOverflowPanel.h │ │ │ ├── ToolBarPanel.h │ │ │ ├── ToolBarTray.h │ │ │ ├── ToolTip.h │ │ │ ├── ToolTipService.h │ │ │ ├── Track.h │ │ │ ├── Transform.h │ │ │ ├── Transform3D.h │ │ │ ├── TransformGroup.h │ │ │ ├── TranslateTransform.h │ │ │ ├── TreeView.h │ │ │ ├── TreeViewItem.h │ │ │ ├── Trigger.h │ │ │ ├── TriggerAction.h │ │ │ ├── TypeConverterMetaData.h │ │ │ ├── UICollection.h │ │ │ ├── UICollection.inl │ │ │ ├── UIElement.h │ │ │ ├── UIElementCollection.h │ │ │ ├── UIElementData.h │ │ │ ├── UIElementEvents.h │ │ │ ├── UIElementEvents.inl │ │ │ ├── UIPropertyMetadata.h │ │ │ ├── UIPropertyMetadata.inl │ │ │ ├── Underline.h │ │ │ ├── UniformGrid.h │ │ │ ├── UpdateSourceTrigger.h │ │ │ ├── Uri.h │ │ │ ├── UserControl.h │ │ │ ├── ValueDestination.h │ │ │ ├── ValueStorageManager.h │ │ │ ├── ValueStorageManagerImpl.h │ │ │ ├── ValueStorageManagerImpl.inl │ │ │ ├── ValueTargetProvider.h │ │ │ ├── Viewbox.h │ │ │ ├── VirtualizationCacheLength.h │ │ │ ├── VirtualizingPanel.h │ │ │ ├── VirtualizingStackPanel.h │ │ │ ├── Visual.h │ │ │ ├── VisualBrush.h │ │ │ ├── VisualCollection.h │ │ │ ├── VisualState.h │ │ │ ├── VisualStateGroup.h │ │ │ ├── VisualStateManager.h │ │ │ ├── VisualTransition.h │ │ │ ├── VisualTreeHelper.h │ │ │ ├── WrapPanel.h │ │ │ ├── XamlProvider.h │ │ │ └── mscorlibTypes.h │ │ ├── NsMath │ │ │ ├── AABBox.h │ │ │ ├── AABBox.inl │ │ │ ├── Matrix.h │ │ │ ├── Matrix.inl │ │ │ ├── Transform.h │ │ │ ├── Transform.inl │ │ │ ├── Vector.h │ │ │ ├── Vector.inl │ │ │ └── VectorMathApi.h │ │ └── NsRender │ │ │ ├── RenderDevice.h │ │ │ ├── RenderDeviceApi.h │ │ │ ├── RenderTarget.h │ │ │ └── Texture.h │ ├── Lib │ │ ├── Noesis.dll │ │ ├── Noesis.lib │ │ ├── NoesisApp.dll │ │ ├── NoesisApp.exp │ │ └── NoesisApp.lib │ └── Providers │ │ ├── Include │ │ └── NsApp │ │ │ ├── EmbeddedFontProvider.h │ │ │ ├── EmbeddedTextureProvider.h │ │ │ ├── EmbeddedXamlProvider.h │ │ │ ├── FastLZ.h │ │ │ ├── FileTextureProvider.h │ │ │ ├── LocalFontProvider.h │ │ │ ├── LocalTextureProvider.h │ │ │ ├── LocalXamlProvider.h │ │ │ ├── ProvidersApi.h │ │ │ ├── ThemeApi.h │ │ │ └── ThemeProviders.h │ │ └── Src │ │ ├── App.Providers.cpp │ │ ├── EmbeddedFontProvider.cpp │ │ ├── EmbeddedTextureProvider.cpp │ │ ├── EmbeddedXamlProvider.cpp │ │ ├── FastLZ.cpp │ │ ├── FileTextureProvider.cpp │ │ ├── LocalFontProvider.cpp │ │ ├── LocalTextureProvider.cpp │ │ ├── LocalXamlProvider.cpp │ │ └── stb_image.h ├── PhysX │ ├── include │ │ ├── PxActor.h │ │ ├── PxAggregate.h │ │ ├── PxArticulation.h │ │ ├── PxArticulationBase.h │ │ ├── PxArticulationJoint.h │ │ ├── PxArticulationJointReducedCoordinate.h │ │ ├── PxArticulationLink.h │ │ ├── PxArticulationReducedCoordinate.h │ │ ├── PxBatchQuery.h │ │ ├── PxBatchQueryDesc.h │ │ ├── PxBroadPhase.h │ │ ├── PxClient.h │ │ ├── PxConfig.h │ │ ├── PxConstraint.h │ │ ├── PxConstraintDesc.h │ │ ├── PxContact.h │ │ ├── PxContactModifyCallback.h │ │ ├── PxDeletionListener.h │ │ ├── PxFiltering.h │ │ ├── PxForceMode.h │ │ ├── PxFoundation.h │ │ ├── PxImmediateMode.h │ │ ├── PxLockedData.h │ │ ├── PxMaterial.h │ │ ├── PxPhysXConfig.h │ │ ├── PxPhysics.h │ │ ├── PxPhysicsAPI.h │ │ ├── PxPhysicsSerialization.h │ │ ├── PxPhysicsVersion.h │ │ ├── PxPruningStructure.h │ │ ├── PxQueryFiltering.h │ │ ├── PxQueryReport.h │ │ ├── PxRigidActor.h │ │ ├── PxRigidBody.h │ │ ├── PxRigidDynamic.h │ │ ├── PxRigidStatic.h │ │ ├── PxScene.h │ │ ├── PxSceneDesc.h │ │ ├── PxSceneLock.h │ │ ├── PxShape.h │ │ ├── PxSimulationEventCallback.h │ │ ├── PxSimulationStatistics.h │ │ ├── PxVisualizationParameter.h │ │ ├── characterkinematic │ │ │ ├── PxBoxController.h │ │ │ ├── PxCapsuleController.h │ │ │ ├── PxController.h │ │ │ ├── PxControllerBehavior.h │ │ │ ├── PxControllerManager.h │ │ │ ├── PxControllerObstacles.h │ │ │ └── PxExtended.h │ │ ├── collision │ │ │ └── PxCollisionDefs.h │ │ ├── common │ │ │ ├── PxBase.h │ │ │ ├── PxCollection.h │ │ │ ├── PxCoreUtilityTypes.h │ │ │ ├── PxMetaData.h │ │ │ ├── PxMetaDataFlags.h │ │ │ ├── PxPhysXCommonConfig.h │ │ │ ├── PxPhysicsInsertionCallback.h │ │ │ ├── PxProfileZone.h │ │ │ ├── PxRenderBuffer.h │ │ │ ├── PxSerialFramework.h │ │ │ ├── PxSerializer.h │ │ │ ├── PxStringTable.h │ │ │ ├── PxTolerancesScale.h │ │ │ ├── PxTypeInfo.h │ │ │ └── windows │ │ │ │ └── PxWindowsDelayLoadHook.h │ │ ├── cooking │ │ │ ├── PxBVH33MidphaseDesc.h │ │ │ ├── PxBVH34MidphaseDesc.h │ │ │ ├── PxBVHStructureDesc.h │ │ │ ├── PxConvexMeshDesc.h │ │ │ ├── PxCooking.h │ │ │ ├── PxMidphaseDesc.h │ │ │ ├── PxTriangleMeshDesc.h │ │ │ └── Pxc.h │ │ ├── cudamanager │ │ │ ├── PxCudaContextManager.h │ │ │ └── PxCudaMemoryManager.h │ │ ├── extensions │ │ │ ├── PxBinaryConverter.h │ │ │ ├── PxBroadPhaseExt.h │ │ │ ├── PxCollectionExt.h │ │ │ ├── PxConstraintExt.h │ │ │ ├── PxContactJoint.h │ │ │ ├── PxConvexMeshExt.h │ │ │ ├── PxD6Joint.h │ │ │ ├── PxD6JointCreate.h │ │ │ ├── PxDefaultAllocator.h │ │ │ ├── PxDefaultCpuDispatcher.h │ │ │ ├── PxDefaultErrorCallback.h │ │ │ ├── PxDefaultSimulationFilterShader.h │ │ │ ├── PxDefaultStreams.h │ │ │ ├── PxDistanceJoint.h │ │ │ ├── PxExtensionsAPI.h │ │ │ ├── PxFixedJoint.h │ │ │ ├── PxJoint.h │ │ │ ├── PxJointLimit.h │ │ │ ├── PxMassProperties.h │ │ │ ├── PxPrismaticJoint.h │ │ │ ├── PxRaycastCCD.h │ │ │ ├── PxRepXSerializer.h │ │ │ ├── PxRepXSimpleType.h │ │ │ ├── PxRevoluteJoint.h │ │ │ ├── PxRigidActorExt.h │ │ │ ├── PxRigidBodyExt.h │ │ │ ├── PxSceneQueryExt.h │ │ │ ├── PxSerialization.h │ │ │ ├── PxShapeExt.h │ │ │ ├── PxSimpleFactory.h │ │ │ ├── PxSmoothNormals.h │ │ │ ├── PxSphericalJoint.h │ │ │ ├── PxStringTableExt.h │ │ │ └── PxTriangleMeshExt.h │ │ ├── filebuf │ │ │ └── PxFileBuf.h │ │ ├── foundation │ │ │ ├── Px.h │ │ │ ├── PxAllocatorCallback.h │ │ │ ├── PxAssert.h │ │ │ ├── PxBitAndData.h │ │ │ ├── PxBounds3.h │ │ │ ├── PxErrorCallback.h │ │ │ ├── PxErrors.h │ │ │ ├── PxFlags.h │ │ │ ├── PxFoundationConfig.h │ │ │ ├── PxIO.h │ │ │ ├── PxIntrinsics.h │ │ │ ├── PxMat33.h │ │ │ ├── PxMat44.h │ │ │ ├── PxMath.h │ │ │ ├── PxMathUtils.h │ │ │ ├── PxMemory.h │ │ │ ├── PxPlane.h │ │ │ ├── PxPreprocessor.h │ │ │ ├── PxProfiler.h │ │ │ ├── PxQuat.h │ │ │ ├── PxSharedAssert.h │ │ │ ├── PxSimpleTypes.h │ │ │ ├── PxStrideIterator.h │ │ │ ├── PxTransform.h │ │ │ ├── PxUnionCast.h │ │ │ ├── PxVec2.h │ │ │ ├── PxVec3.h │ │ │ ├── PxVec4.h │ │ │ ├── unix │ │ │ │ └── PxUnixIntrinsics.h │ │ │ └── windows │ │ │ │ └── PxWindowsIntrinsics.h │ │ ├── geometry │ │ │ ├── PxBVHStructure.h │ │ │ ├── PxBoxGeometry.h │ │ │ ├── PxCapsuleGeometry.h │ │ │ ├── PxConvexMesh.h │ │ │ ├── PxConvexMeshGeometry.h │ │ │ ├── PxGeometry.h │ │ │ ├── PxGeometryHelpers.h │ │ │ ├── PxGeometryQuery.h │ │ │ ├── PxHeightField.h │ │ │ ├── PxHeightFieldDesc.h │ │ │ ├── PxHeightFieldFlag.h │ │ │ ├── PxHeightFieldGeometry.h │ │ │ ├── PxHeightFieldSample.h │ │ │ ├── PxMeshQuery.h │ │ │ ├── PxMeshScale.h │ │ │ ├── PxPlaneGeometry.h │ │ │ ├── PxSimpleTriangleMesh.h │ │ │ ├── PxSphereGeometry.h │ │ │ ├── PxTriangle.h │ │ │ ├── PxTriangleMesh.h │ │ │ └── PxTriangleMeshGeometry.h │ │ ├── geomutils │ │ │ ├── GuContactBuffer.h │ │ │ └── GuContactPoint.h │ │ ├── gpu │ │ │ └── PxGpu.h │ │ ├── pvd │ │ │ ├── PxPvd.h │ │ │ ├── PxPvdSceneClient.h │ │ │ └── PxPvdTransport.h │ │ ├── solver │ │ │ └── PxSolverDefs.h │ │ ├── task │ │ │ ├── PxCpuDispatcher.h │ │ │ ├── PxTask.h │ │ │ ├── PxTaskDefine.h │ │ │ └── PxTaskManager.h │ │ └── vehicle │ │ │ ├── PxVehicleComponents.h │ │ │ ├── PxVehicleDrive.h │ │ │ ├── PxVehicleDrive4W.h │ │ │ ├── PxVehicleDriveNW.h │ │ │ ├── PxVehicleDriveTank.h │ │ │ ├── PxVehicleNoDrive.h │ │ │ ├── PxVehicleSDK.h │ │ │ ├── PxVehicleShaders.h │ │ │ ├── PxVehicleTireFriction.h │ │ │ ├── PxVehicleUpdate.h │ │ │ ├── PxVehicleUtil.h │ │ │ ├── PxVehicleUtilControl.h │ │ │ ├── PxVehicleUtilSetup.h │ │ │ ├── PxVehicleUtilTelemetry.h │ │ │ └── PxVehicleWheels.h │ └── lib │ │ ├── checked │ │ ├── PhysXCharacterKinematic_dynamic_64.lib │ │ ├── PhysXCommon_64.dll │ │ ├── PhysXCommon_64.exp │ │ ├── PhysXCommon_64.lib │ │ ├── PhysXCooking_64.dll │ │ ├── PhysXCooking_64.exp │ │ ├── PhysXCooking_64.lib │ │ ├── PhysXExtensions_dynamic_64.lib │ │ ├── PhysXFoundation_64.dll │ │ ├── PhysXFoundation_64.exp │ │ ├── PhysXFoundation_64.lib │ │ ├── PhysXGpu_64.dll │ │ ├── PhysXPvdSDK_dynamic_64.lib │ │ ├── PhysX_64.dll │ │ ├── PhysX_64.exp │ │ ├── PhysX_64.lib │ │ └── glut32.dll │ │ └── release │ │ ├── PhysXCharacterKinematic_dynamic_64.lib │ │ ├── PhysXCommon_64.dll │ │ ├── PhysXCommon_64.exp │ │ ├── PhysXCommon_64.lib │ │ ├── PhysXCooking_64.dll │ │ ├── PhysXCooking_64.exp │ │ ├── PhysXCooking_64.lib │ │ ├── PhysXDevice64.dll │ │ ├── PhysXExtensions_dynamic_64.lib │ │ ├── PhysXFoundation_64.dll │ │ ├── PhysXFoundation_64.exp │ │ ├── PhysXFoundation_64.lib │ │ ├── PhysXGpu_64.dll │ │ ├── PhysX_64.dll │ │ ├── PhysX_64.exp │ │ ├── PhysX_64.lib │ │ └── glut32.dll ├── assimp │ ├── bin │ │ ├── debug │ │ │ ├── IrrXMLd.lib │ │ │ ├── assimp-vc142-mtd.lib │ │ │ ├── assimpd.exp │ │ │ ├── assimpd.lib │ │ │ ├── unit.exp │ │ │ ├── unit.lib │ │ │ └── zlibstaticd.lib │ │ └── release │ │ │ ├── IrrXML.lib │ │ │ ├── assimp-vc142-mt.exp │ │ │ ├── assimp-vc142-mt.lib │ │ │ ├── assimp.exp │ │ │ ├── assimp.lib │ │ │ ├── unit.exp │ │ │ ├── unit.lib │ │ │ └── zlibstatic.lib │ └── include │ │ └── assimp │ │ ├── .editorconfig │ │ ├── BaseImporter.h │ │ ├── Bitmap.h │ │ ├── BlobIOSystem.h │ │ ├── ByteSwapper.h │ │ ├── ColladaMetaData.h │ │ ├── Compiler │ │ ├── poppack1.h │ │ ├── pstdint.h │ │ └── pushpack1.h │ │ ├── CreateAnimMesh.h │ │ ├── DefaultIOStream.h │ │ ├── DefaultIOSystem.h │ │ ├── DefaultLogger.hpp │ │ ├── Defines.h │ │ ├── Exceptional.h │ │ ├── Exporter.hpp │ │ ├── GenericProperty.h │ │ ├── Hash.h │ │ ├── IOStream.hpp │ │ ├── IOStreamBuffer.h │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LineSplitter.h │ │ ├── LogAux.h │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── Macros.h │ │ ├── MathFunctions.h │ │ ├── MemoryIOWrapper.h │ │ ├── NullLogger.hpp │ │ ├── ParsingUtils.h │ │ ├── Profiler.h │ │ ├── ProgressHandler.hpp │ │ ├── RemoveComments.h │ │ ├── SGSpatialSort.h │ │ ├── SceneCombiner.h │ │ ├── SkeletonMeshBuilder.h │ │ ├── SmallVector.h │ │ ├── SmoothingGroups.h │ │ ├── SmoothingGroups.inl │ │ ├── SpatialSort.h │ │ ├── StandardShapes.h │ │ ├── StreamReader.h │ │ ├── StreamWriter.h │ │ ├── StringComparison.h │ │ ├── StringUtils.h │ │ ├── Subdivision.h │ │ ├── TinyFormatter.h │ │ ├── Vertex.h │ │ ├── XMLTools.h │ │ ├── ZipArchiveIOSystem.h │ │ ├── aabb.h │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── commonMetaData.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── defs.h │ │ ├── fast_atof.h │ │ ├── importerdesc.h │ │ ├── irrXMLWrapper.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── metadata.h │ │ ├── pbrmaterial.h │ │ ├── port │ │ └── AndroidJNI │ │ │ └── AndroidJNIIOSystem.h │ │ ├── postprocess.h │ │ ├── qnan.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h ├── glslang │ └── include │ │ └── glslangStandAlone │ │ └── DirStackFileIncluder.h └── stb │ └── stb_image.h ├── LICENSE ├── LambdaEngine ├── Include │ ├── Application │ │ ├── API │ │ │ ├── Application.h │ │ │ ├── ApplicationEventHandler.h │ │ │ ├── CommonApplication.h │ │ │ ├── Console.h │ │ │ ├── Events │ │ │ │ ├── DebugEvents.h │ │ │ │ ├── Event.h │ │ │ │ ├── EventHandler.h │ │ │ │ ├── EventQueue.h │ │ │ │ ├── KeyEvents.h │ │ │ │ ├── MouseEvents.h │ │ │ │ ├── NetworkEvents.h │ │ │ │ ├── RenderEvents.h │ │ │ │ └── WindowEvents.h │ │ │ ├── Misc.h │ │ │ ├── PlatformApplication.h │ │ │ ├── PlatformConsole.h │ │ │ ├── PlatformMisc.h │ │ │ └── Window.h │ │ ├── Mac │ │ │ ├── CocoaAppDelegate.h │ │ │ ├── CocoaConsoleWindow.h │ │ │ ├── CocoaContentView.h │ │ │ ├── CocoaWindow.h │ │ │ ├── MacApplication.h │ │ │ ├── MacConsole.h │ │ │ ├── MacMisc.h │ │ │ ├── MacScopedPool.h │ │ │ └── MacWindow.h │ │ └── Win32 │ │ │ ├── IWin32MessageHandler.h │ │ │ ├── Win32Application.h │ │ │ ├── Win32Console.h │ │ │ ├── Win32Misc.h │ │ │ ├── Win32Window.h │ │ │ └── Windows.h │ ├── Assert │ │ └── Assert.h │ ├── Audio │ │ ├── API │ │ │ ├── AudioTypes.h │ │ │ ├── IAudioDevice.h │ │ │ ├── IAudioGeometry.h │ │ │ ├── IMusic.h │ │ │ ├── IReverbSphere.h │ │ │ ├── ISoundEffect2D.h │ │ │ ├── ISoundEffect3D.h │ │ │ ├── ISoundInstance2D.h │ │ │ └── ISoundInstance3D.h │ │ ├── AudioAPI.h │ │ └── FMOD │ │ │ ├── AudioDeviceFMOD.h │ │ │ ├── AudioGeometryFMOD.h │ │ │ ├── FMOD.h │ │ │ ├── MusicFMOD.h │ │ │ ├── ReverbSphereFMOD.h │ │ │ ├── SoundEffect2DFMOD.h │ │ │ ├── SoundEffect3DFMOD.h │ │ │ ├── SoundInstance2DFMOD.h │ │ │ └── SoundInstance3DFMOD.h │ ├── Containers │ │ ├── CCBuffer.h │ │ ├── IDContainer.h │ │ ├── IDVector.h │ │ ├── PrehashedString.h │ │ ├── String.h │ │ ├── TArray.h │ │ ├── TArray.natvis │ │ ├── THashTable.h │ │ ├── TQueue.h │ │ ├── TSet.h │ │ ├── TSharedPtr.h │ │ ├── TSharedPtr.natvis │ │ ├── TStack.h │ │ ├── TUniquePtr.h │ │ └── TUtilities.h │ ├── Core │ │ ├── RefCountedObject.h │ │ ├── TSharedRef.h │ │ └── TSharedRef.natvis │ ├── Debug │ │ ├── CPUProfiler.h │ │ ├── GPUProfiler.h │ │ └── Profiler.h │ ├── Defines.h │ ├── ECS │ │ ├── Component.h │ │ ├── ComponentArray.h │ │ ├── ComponentOwner.h │ │ ├── ComponentStorage.h │ │ ├── ComponentType.h │ │ ├── ECSCore.h │ │ ├── ECSVisualizer.h │ │ ├── Entity.h │ │ ├── EntityPublisher.h │ │ ├── EntityRegistry.h │ │ ├── EntitySubscriber.h │ │ ├── Job.h │ │ ├── JobScheduler.h │ │ ├── RegularWorker.h │ │ └── System.h │ ├── Engine │ │ ├── ConfigCodes.h │ │ ├── EngineConfig.h │ │ └── EngineLoop.h │ ├── GUI │ │ └── Core │ │ │ ├── GUIApplication.h │ │ │ ├── GUIHelpers.h │ │ │ ├── GUIInputMapper.h │ │ │ ├── GUIPipelineStateCache.h │ │ │ ├── GUIRenderTarget.h │ │ │ ├── GUIRenderer.h │ │ │ ├── GUIShaderManager.h │ │ │ └── GUITexture.h │ ├── Game │ │ ├── ConsoleCommand.h │ │ ├── ECS │ │ │ ├── ComponentOwners │ │ │ │ └── Misc │ │ │ │ │ └── InheritanceComponentOwner.h │ │ │ ├── Components │ │ │ │ ├── Audio │ │ │ │ │ ├── AudibleComponent.h │ │ │ │ │ └── ListenerComponent.h │ │ │ │ ├── Misc │ │ │ │ │ ├── Components.h │ │ │ │ │ └── InheritanceComponent.h │ │ │ │ ├── Networking │ │ │ │ │ ├── NetworkComponent.h │ │ │ │ │ └── NetworkPositionComponent.h │ │ │ │ ├── Physics │ │ │ │ │ ├── Collision.h │ │ │ │ │ └── Transform.h │ │ │ │ ├── Player │ │ │ │ │ ├── PlayerComponent.h │ │ │ │ │ └── PlayerRelatedComponent.h │ │ │ │ ├── Rendering │ │ │ │ │ ├── AnimationComponent.h │ │ │ │ │ ├── CameraComponent.h │ │ │ │ │ ├── DirectionalLightComponent.h │ │ │ │ │ ├── GlobalLightProbeComponent.h │ │ │ │ │ ├── MeshComponent.h │ │ │ │ │ ├── MeshPaintComponent.h │ │ │ │ │ ├── ParticleEmitter.h │ │ │ │ │ ├── PointLightComponent.h │ │ │ │ │ ├── RayTracedComponent.h │ │ │ │ │ └── RenderMaskComponent.h │ │ │ │ └── Team │ │ │ │ │ └── TeamComponent.h │ │ │ └── Systems │ │ │ │ ├── Audio │ │ │ │ └── AudioSystem.h │ │ │ │ ├── CameraSystem.h │ │ │ │ ├── Networking │ │ │ │ └── NetworkSystem.h │ │ │ │ ├── Physics │ │ │ │ ├── PhysicsSystem.h │ │ │ │ ├── TransformApplierSystem.h │ │ │ │ └── VelocityComponentSystem.h │ │ │ │ ├── Rendering │ │ │ │ ├── AnimationSystem.h │ │ │ │ └── RenderSystem.h │ │ │ │ └── TrackSystem.h │ │ ├── Game.h │ │ ├── GameConsole.h │ │ ├── Multiplayer │ │ │ ├── Client │ │ │ │ ├── ClientSystem.h │ │ │ │ └── ClientUtilsImpl.h │ │ │ ├── GameState.h │ │ │ ├── MultiplayerUtilBase.h │ │ │ ├── MultiplayerUtils.h │ │ │ └── Server │ │ │ │ ├── ClientRemoteSystem.h │ │ │ │ ├── ServerSystem.h │ │ │ │ └── ServerUtilsImpl.h │ │ ├── PlayerIndexHelper.h │ │ ├── State.h │ │ └── StateManager.h │ ├── Input │ │ ├── API │ │ │ ├── ActionCodes.h │ │ │ ├── Input.h │ │ │ ├── InputActionSystem.h │ │ │ ├── InputCodes.h │ │ │ └── InputState.h │ │ ├── Mac │ │ │ └── MacInputCodeTable.h │ │ └── Win32 │ │ │ └── Win32InputCodeTable.h │ ├── LambdaEngine.h │ ├── Log │ │ └── Log.h │ ├── Math │ │ ├── Math.h │ │ ├── MathUtilities.h │ │ └── Random.h │ ├── Memory │ │ ├── API │ │ │ ├── Malloc.h │ │ │ ├── Memory.h │ │ │ ├── New.h │ │ │ ├── PlatformMemory.h │ │ │ └── StackAllocator.h │ │ ├── Mac │ │ │ └── MacMemory.h │ │ └── Win32 │ │ │ └── Win32Memory.h │ ├── Networking │ │ ├── API │ │ │ ├── BinaryDecoder.h │ │ │ ├── BinaryEncoder.h │ │ │ ├── ClientBase.h │ │ │ ├── ClientRemoteBase.h │ │ │ ├── EProtocol.h │ │ │ ├── IClient.h │ │ │ ├── IClientHandler.h │ │ │ ├── IClientRemoteHandler.h │ │ │ ├── IPAddress.h │ │ │ ├── IPEndPoint.h │ │ │ ├── IPacketListener.h │ │ │ ├── IServerHandler.h │ │ │ ├── ISocket.h │ │ │ ├── NetWorker.h │ │ │ ├── NetworkChallenge.h │ │ │ ├── NetworkDebugger.h │ │ │ ├── NetworkSegment.h │ │ │ ├── NetworkStatistics.h │ │ │ ├── NetworkUtils.h │ │ │ ├── PacketManagerBase.h │ │ │ ├── PacketTransceiverBase.h │ │ │ ├── PacketTranscoder.h │ │ │ ├── PlatformNetworkUtils.h │ │ │ ├── SegmentPool.h │ │ │ ├── ServerBase.h │ │ │ ├── TCP │ │ │ │ ├── ClientRemoteTCP.h │ │ │ │ ├── ClientTCP.h │ │ │ │ ├── ISocketTCP.h │ │ │ │ ├── PacketManagerTCP.h │ │ │ │ ├── PacketTransceiverTCP.h │ │ │ │ └── ServerTCP.h │ │ │ └── UDP │ │ │ │ ├── ClientNetworkDiscovery.h │ │ │ │ ├── ClientRemoteUDP.h │ │ │ │ ├── ClientUDP.h │ │ │ │ ├── INetworkDiscoveryClient.h │ │ │ │ ├── INetworkDiscoveryServer.h │ │ │ │ ├── ISocketUDP.h │ │ │ │ ├── NetworkDiscovery.h │ │ │ │ ├── PacketManagerUDP.h │ │ │ │ ├── PacketTransceiverUDP.h │ │ │ │ ├── ServerNetworkDiscovery.h │ │ │ │ └── ServerUDP.h │ │ ├── Mac │ │ │ ├── MacIPAddress.h │ │ │ ├── MacNetworkUtils.h │ │ │ ├── MacSocketBase.h │ │ │ ├── MacSocketTCP.h │ │ │ └── MacSocketUDP.h │ │ └── Win32 │ │ │ ├── Win32IPAddress.h │ │ │ ├── Win32NetworkUtils.h │ │ │ ├── Win32SocketBase.h │ │ │ ├── Win32SocketTCP.h │ │ │ └── Win32SocketUDP.h │ ├── Physics │ │ ├── BoundingBox.h │ │ └── PhysX │ │ │ ├── ErrorCallback.h │ │ │ ├── FilterShader.h │ │ │ ├── PhysX.h │ │ │ ├── QueryFilterCallback.h │ │ │ └── RaycastQueryFilterCallback.h │ ├── Rendering │ │ ├── AARenderer.h │ │ ├── Animation │ │ │ ├── AnimationGraph.h │ │ │ └── AnimationNode.h │ │ ├── BlitStage.h │ │ ├── Core │ │ │ ├── API │ │ │ │ ├── AccelerationStructure.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── CommandAllocator.h │ │ │ │ ├── CommandList.h │ │ │ │ ├── CommandQueue.h │ │ │ │ ├── DescriptorCache.h │ │ │ │ ├── DescriptorHeap.h │ │ │ │ ├── DescriptorHeapInfo.h │ │ │ │ ├── DescriptorSet.h │ │ │ │ ├── DeviceChild.h │ │ │ │ ├── Fence.h │ │ │ │ ├── GraphicsDevice.h │ │ │ │ ├── GraphicsHelpers.h │ │ │ │ ├── GraphicsTypes.h │ │ │ │ ├── PipelineContext.h │ │ │ │ ├── PipelineLayout.h │ │ │ │ ├── PipelineState.h │ │ │ │ ├── QueryHeap.h │ │ │ │ ├── RenderPass.h │ │ │ │ ├── SBT.h │ │ │ │ ├── Sampler.h │ │ │ │ ├── Shader.h │ │ │ │ ├── SwapChain.h │ │ │ │ ├── TDeviceChildBase.h │ │ │ │ ├── Texture.h │ │ │ │ └── TextureView.h │ │ │ └── Vulkan │ │ │ │ ├── AccelerationStructureVK.h │ │ │ │ ├── BufferVK.h │ │ │ │ ├── CommandAllocatorVK.h │ │ │ │ ├── CommandListVK.h │ │ │ │ ├── CommandQueueVK.h │ │ │ │ ├── ComputePipelineStateVK.h │ │ │ │ ├── DescriptorHeapVK.h │ │ │ │ ├── DescriptorSetVK.h │ │ │ │ ├── DeviceAllocatorVK.h │ │ │ │ ├── FenceTimelineVK.h │ │ │ │ ├── FenceVK.h │ │ │ │ ├── FrameBufferCacheVK.h │ │ │ │ ├── GraphicsDeviceVK.h │ │ │ │ ├── GraphicsPipelineStateVK.h │ │ │ │ ├── PipelineLayoutVK.h │ │ │ │ ├── QueryHeapVK.h │ │ │ │ ├── RayTracingPipelineStateVK.h │ │ │ │ ├── RenderPassVK.h │ │ │ │ ├── SBTVK.h │ │ │ │ ├── SamplerVK.h │ │ │ │ ├── ShaderVK.h │ │ │ │ ├── SwapChainVK.h │ │ │ │ ├── TextureVK.h │ │ │ │ ├── TextureViewVK.h │ │ │ │ ├── Vulkan.h │ │ │ │ └── VulkanHelpers.h │ │ ├── CustomRenderer.h │ │ ├── EntityMaskManager.h │ │ ├── IRenderGraphCreateHandler.h │ │ ├── ImGuiRenderer.h │ │ ├── LightProbeRenderer.h │ │ ├── LightRenderer.h │ │ ├── LineRenderer.h │ │ ├── ParticleCollider.h │ │ ├── ParticleManager.h │ │ ├── ParticleRenderer.h │ │ ├── ParticleUpdater.h │ │ ├── PipelineStateManager.h │ │ ├── RT │ │ │ ├── ASBuilder.h │ │ │ └── ReflectionsDenoisePass.h │ │ ├── RenderAPI.h │ │ ├── RenderGraph.h │ │ ├── RenderGraphEditor.h │ │ ├── RenderGraphEditorHelpers.h │ │ ├── RenderGraphParser.h │ │ ├── RenderGraphSerializer.h │ │ ├── RenderGraphTypes.h │ │ └── StagingBufferCache.h │ ├── Resources │ │ ├── GLSLShaderSource.h │ │ ├── GLSLang.h │ │ ├── Material.h │ │ ├── Mesh.h │ │ ├── MeshTessellator.h │ │ ├── ResourceLoader.h │ │ ├── ResourceManager.h │ │ ├── ResourcePaths.h │ │ └── STB.h │ ├── Threading │ │ ├── API │ │ │ ├── GenericThread.h │ │ │ ├── PlatformThread.h │ │ │ ├── SpinLock.h │ │ │ ├── SpinLockRecursive.h │ │ │ ├── Thread.h │ │ │ └── ThreadPool.h │ │ ├── Mac │ │ │ └── MacMainThread.h │ │ └── Win32 │ │ │ └── Win32Thread.h │ ├── Time │ │ ├── API │ │ │ ├── Clock.h │ │ │ ├── PlatformTime.h │ │ │ ├── Time.h │ │ │ └── Timestamp.h │ │ ├── Mac │ │ │ └── MacTime.h │ │ └── Win32 │ │ │ └── Win32Time.h │ ├── Types.h │ └── Utilities │ │ ├── HashUtilities.h │ │ ├── IDGenerator.h │ │ ├── IOUtilities.h │ │ ├── RuntimeStats.h │ │ ├── SHA256.h │ │ ├── StringHash.h │ │ └── StringUtilities.h ├── PreCompiled.cpp ├── PreCompiled.h └── Source │ ├── Application │ ├── API │ │ ├── CommonApplication.cpp │ │ └── Events │ │ │ └── EventQueue.cpp │ ├── Mac │ │ ├── CocoaAppDelegate.mm │ │ ├── CocoaConsoleWindow.mm │ │ ├── CocoaContentView.mm │ │ ├── CocoaWindow.mm │ │ ├── MacApplication.mm │ │ ├── MacConsole.mm │ │ ├── MacMisc.mm │ │ └── MacWindow.mm │ └── Win32 │ │ ├── Win32Application.cpp │ │ ├── Win32Console.cpp │ │ ├── Win32Misc.cpp │ │ └── Win32Window.cpp │ ├── Assert │ └── Assert.cpp │ ├── Audio │ ├── API │ │ └── AudioDevice.cpp │ ├── AudioAPI.cpp │ └── FMOD │ │ ├── AudioDeviceFMOD.cpp │ │ ├── AudioGeometryFMOD.cpp │ │ ├── MusicFMOD.cpp │ │ ├── ReverbSphereFMOD.cpp │ │ ├── SoundEffect2DFMOD.cpp │ │ ├── SoundEffect3DFMOD.cpp │ │ ├── SoundInstance2DFMOD.cpp │ │ └── SoundInstance3DFMOD.cpp │ ├── Core │ └── RefCountedObject.cpp │ ├── Debug │ ├── CPUProfiler.cpp │ ├── GPUProfiler.cpp │ └── Profiler.cpp │ ├── ECS │ ├── ComponentOwner.cpp │ ├── ComponentStorage.cpp │ ├── ComponentType.cpp │ ├── ECSCore.cpp │ ├── ECSVisualizer.cpp │ ├── EntityPublisher.cpp │ ├── EntityRegistry.cpp │ ├── EntitySubscriber.cpp │ ├── JobScheduler.cpp │ ├── RegularWorker.cpp │ └── System.cpp │ ├── Engine │ ├── EngineConfig.cpp │ └── EngineLoop.cpp │ ├── GUI │ └── Core │ │ ├── GUIApplication.cpp │ │ ├── GUIInputMapper.cpp │ │ ├── GUIPipelineStateCache.cpp │ │ ├── GUIRenderTarget.cpp │ │ ├── GUIRenderer.cpp │ │ ├── GUIShaderManager.cpp │ │ └── GUITexture.cpp │ ├── Game │ ├── ConsoleCommand.cpp │ ├── ECS │ │ ├── ComponentOwners │ │ │ └── Misc │ │ │ │ └── InheritanceComponentOwner.cpp │ │ ├── Components │ │ │ ├── Audio │ │ │ │ ├── AudibleComponent.cpp │ │ │ │ └── ListenerComponent.cpp │ │ │ ├── Physics │ │ │ │ └── Transform.cpp │ │ │ └── Rendering │ │ │ │ ├── CameraComponent.cpp │ │ │ │ └── MeshPaintComponent.cpp │ │ └── Systems │ │ │ ├── Audio │ │ │ └── AudioSystem.cpp │ │ │ ├── CameraSystem.cpp │ │ │ ├── Networking │ │ │ └── NetworkSystem.cpp │ │ │ ├── Physics │ │ │ ├── PhysicsSystem.cpp │ │ │ ├── TransformApplierSystem.cpp │ │ │ └── VelocityComponentSystem.cpp │ │ │ ├── Rendering │ │ │ ├── AnimationSystem.cpp │ │ │ └── RenderSystem.cpp │ │ │ └── TrackSystem.cpp │ ├── Game.cpp │ ├── GameConsole.cpp │ ├── Multiplayer │ │ ├── Client │ │ │ ├── ClientSystem.cpp │ │ │ └── ClientUtilsImpl.cpp │ │ ├── MultiplayerUtils.cpp │ │ └── Server │ │ │ ├── ClientRemoteSystem.cpp │ │ │ ├── ServerSystem.cpp │ │ │ └── ServerUtilsImpl.cpp │ ├── PlayerIndexHelper.cpp │ ├── State.cpp │ └── StateManager.cpp │ ├── Input │ ├── API │ │ ├── Input.cpp │ │ └── InputActionSystem.cpp │ ├── Mac │ │ └── MacInputCodeTable.mm │ └── Win32 │ │ └── Win32InputCodeTable.cpp │ ├── Launch │ └── Main.cpp │ ├── Log │ └── Log.cpp │ ├── Math │ ├── Math.cpp │ └── Random.cpp │ ├── Memory │ ├── API │ │ ├── Malloc.cpp │ │ ├── New.cpp │ │ └── StackAllocator.cpp │ ├── Mac │ │ └── MacMemory.cpp │ └── Win32 │ │ └── Win32Memory.cpp │ ├── Networking │ ├── API │ │ ├── BinaryDecoder.cpp │ │ ├── BinaryEncoder.cpp │ │ ├── ClientBase.cpp │ │ ├── ClientRemoteBase.cpp │ │ ├── EProtocol.cpp │ │ ├── IPAddress.cpp │ │ ├── IPEndPoint.cpp │ │ ├── NetWorker.cpp │ │ ├── NetworkChallenge.cpp │ │ ├── NetworkDebugger.cpp │ │ ├── NetworkSegment.cpp │ │ ├── NetworkStatistics.cpp │ │ ├── NetworkUtils.cpp │ │ ├── PacketManagerBase.cpp │ │ ├── PacketTransceiverBase.cpp │ │ ├── PacketTranscoder.cpp │ │ ├── SegmentPool.cpp │ │ ├── ServerBase.cpp │ │ ├── TCP │ │ │ ├── ClientRemoteTCP.cpp │ │ │ ├── ClientTCP.cpp │ │ │ ├── PacketManagerTCP.cpp │ │ │ ├── PacketTransceiverTCP.cpp │ │ │ └── ServerTCP.cpp │ │ └── UDP │ │ │ ├── ClientNetworkDiscovery.cpp │ │ │ ├── ClientRemoteUDP.cpp │ │ │ ├── ClientUDP.cpp │ │ │ ├── NetworkDiscovery.cpp │ │ │ ├── PacketManagerUDP.cpp │ │ │ ├── PacketTransceiverUDP.cpp │ │ │ ├── ServerNetworkDiscovery.cpp │ │ │ └── ServerUDP.cpp │ ├── Mac │ │ ├── MacIPAddress.cpp │ │ ├── MacNetworkUtils.cpp │ │ ├── MacSocketTCP.cpp │ │ └── MacSocketUDP.cpp │ └── Win32 │ │ ├── Win32IPAddress.cpp │ │ ├── Win32NetworkUtils.cpp │ │ ├── Win32SocketTCP.cpp │ │ └── Win32SocketUDP.cpp │ ├── Rendering │ ├── AARenderer.cpp │ ├── Animation │ │ ├── AnimationGraph.cpp │ │ └── AnimationNode.cpp │ ├── BlitStage.cpp │ ├── Core │ │ ├── API │ │ │ ├── DescriptorCache.cpp │ │ │ ├── GraphicsDevice.cpp │ │ │ ├── PipelineContext.cpp │ │ │ └── Sampler.cpp │ │ └── Vulkan │ │ │ ├── AccelerationStructureVK.cpp │ │ │ ├── BufferVK.cpp │ │ │ ├── CommandAllocatorVK.cpp │ │ │ ├── CommandListVK.cpp │ │ │ ├── CommandQueueVK.cpp │ │ │ ├── ComputePipelineStateVK.cpp │ │ │ ├── DescriptorHeapVK.cpp │ │ │ ├── DescriptorSetVK.cpp │ │ │ ├── DeviceAllocatorVK.cpp │ │ │ ├── FenceTimelineVK.cpp │ │ │ ├── FenceVK.cpp │ │ │ ├── FrameBufferCacheVK.cpp │ │ │ ├── GraphicsDeviceVK.cpp │ │ │ ├── GraphicsPipelineStateVK.cpp │ │ │ ├── PipelineLayoutVK.cpp │ │ │ ├── QueryHeapVK.cpp │ │ │ ├── RayTracingPipelineStateVK.cpp │ │ │ ├── RenderPassVK.cpp │ │ │ ├── SBTVK.cpp │ │ │ ├── SamplerVK.cpp │ │ │ ├── ShaderVK.cpp │ │ │ ├── SwapChainVK.cpp │ │ │ ├── TextureVK.cpp │ │ │ └── TextureViewVK.cpp │ ├── EntityMaskManager.cpp │ ├── ImGuiRenderer.cpp │ ├── LightProbeRenderer.cpp │ ├── LightRenderer.cpp │ ├── LineRenderer.cpp │ ├── ParticleCollider.cpp │ ├── ParticleManager.cpp │ ├── ParticleRenderer.cpp │ ├── ParticleUpdater.cpp │ ├── PipelineStateManager.cpp │ ├── RT │ │ ├── ASBuilder.cpp │ │ └── ReflectionsDenoisePass.cpp │ ├── RenderAPI.cpp │ ├── RenderGraph.cpp │ ├── RenderGraphEditor.cpp │ ├── RenderGraphParser.cpp │ ├── RenderGraphSerializer.cpp │ └── StagingBufferCache.cpp │ ├── Resources │ ├── GLSLShaderSource.cpp │ ├── Mesh.cpp │ ├── MeshTessellator.cpp │ ├── ResourceLoader.cpp │ └── ResourceManager.cpp │ ├── Threading │ ├── API │ │ ├── Thread.cpp │ │ └── ThreadPool.cpp │ ├── Mac │ │ └── MacMainThread.mm │ └── Win32 │ │ └── Win32Thread.cpp │ ├── Time │ └── API │ │ └── Clock.cpp │ └── Utilities │ ├── IDGenerator.cpp │ ├── RuntimeStats.cpp │ └── SHA256.cpp ├── Licenses └── physx.md ├── Premake vs2017.bat ├── Premake vs2019.bat ├── Premake xcode.command ├── README.md ├── Tools ├── glslc └── glslc.exe ├── Update_Dependencies.bat ├── Update_Dependencies.command ├── compile_shaders.bat ├── compile_shaders.command ├── premake5 ├── premake5.exe └── premake5.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/benchmark.py -------------------------------------------------------------------------------- /.github/workflows/generate-lint-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/generate-lint-report.py -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/master.yaml -------------------------------------------------------------------------------- /.github/workflows/read-lint-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/read-lint-report.py -------------------------------------------------------------------------------- /.github/workflows/update-charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.github/workflows/update-charts.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/CrazyCanvas.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/CrazyCanvas.ico -------------------------------------------------------------------------------- /Assets/Meshes/Grenade.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Grenade.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/ArmsAnimation.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/ArmsAnimation.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/FirstPersonGun.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/FirstPersonGun.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/Gun.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/Gun.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/WeaponLiquid.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/WeaponLiquid.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/WeaponLiquidPaint.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/WeaponLiquidPaint.glb -------------------------------------------------------------------------------- /Assets/Meshes/Gun/WeaponLiquidWater.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Gun/WeaponLiquidWater.glb -------------------------------------------------------------------------------- /Assets/Meshes/MeshletCache/Marching Cubes Mesh 0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/MeshletCache/Marching Cubes Mesh 0 -------------------------------------------------------------------------------- /Assets/Meshes/Player/Character.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/Character.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Player/Idle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/Idle.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/IdleRightUV.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/IdleRightUV.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/Run.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/Run.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/RunBackward.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/RunBackward.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/RunBackwardMirrored.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/RunBackwardMirrored.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/RunMirrored.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/RunMirrored.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/StrafeLeft.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/StrafeLeft.glb -------------------------------------------------------------------------------- /Assets/Meshes/Player/StrafeRight.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Player/StrafeRight.glb -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Robot.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Robot.mtl -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Robot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Robot.obj -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Running.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Running.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Standard Walk.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Standard Walk.fbx -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Textures/robot_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Textures/robot_albedo.png -------------------------------------------------------------------------------- /Assets/Meshes/Robot/Textures/robot_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Robot/Textures/robot_normal.png -------------------------------------------------------------------------------- /Assets/Meshes/Roller.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/Roller.glb -------------------------------------------------------------------------------- /Assets/Meshes/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Meshes/sphere.obj -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Bitter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Bitter-Regular.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Exo2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Exo2-Regular.otf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Foo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Foo.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/K22 Ambelyn Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/K22 Ambelyn Condensed.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/LCDMono2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/LCDMono2.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/LetMeRide.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/LetMeRide.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Oxanium-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Oxanium-SemiBold.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/TwemojiMozilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/TwemojiMozilla.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/WeblySleek_UI_Normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/WeblySleek_UI_Normal.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Fonts/gogono_cocoa_mochi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Fonts/gogono_cocoa_mochi.ttf -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/Crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/Crosshair.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/CrosshairHit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/CrosshairHit.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/Grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/Grenade.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/HealthBorderNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/HealthBorderNew.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/HealthPlateNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/HealthPlateNew.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/HealthRectNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/HealthRectNew.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/HitIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/HitIndicator.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/Roller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/Roller.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/ScoreHolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/ScoreHolder.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/ScoreHolder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/ScoreHolder2.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/WaterBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/WaterBoard.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/arrow.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/checkmark.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Textures/logo.png -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/CountdownGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/CountdownGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/DamageIndicatorGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/DamageIndicatorGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/EnemyHitIndicatorGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/EnemyHitIndicatorGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/EscapeMenuGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/EscapeMenuGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/GameOverGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/GameOverGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/HUD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/HUD.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/KillFeedGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/KillFeedGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/Lobby.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/Lobby.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/MainMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/MainMenu.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/Multiplayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/Multiplayer.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/PromptGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/PromptGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/ScoreBoardGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/ScoreBoardGUI.xaml -------------------------------------------------------------------------------- /Assets/NoesisGUI/Xaml/SettingsGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/NoesisGUI/Xaml/SettingsGUI.xaml -------------------------------------------------------------------------------- /Assets/RenderGraphs/RT_DEFERRED_PBR.lrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/RenderGraphs/RT_DEFERRED_PBR.lrg -------------------------------------------------------------------------------- /Assets/RenderGraphs/RT_DEFERRED_PBR_MESH.lrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/RenderGraphs/RT_DEFERRED_PBR_MESH.lrg -------------------------------------------------------------------------------- /Assets/RenderGraphs/RT_RQ_DEFERRED_PBR.lrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/RenderGraphs/RT_RQ_DEFERRED_PBR.lrg -------------------------------------------------------------------------------- /Assets/RenderGraphs/RT_RQ_DEFERRED_PBR_MESH.lrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/RenderGraphs/RT_RQ_DEFERRED_PBR_MESH.lrg -------------------------------------------------------------------------------- /Assets/RenderGraphs/SERVER.lrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/RenderGraphs/SERVER.lrg -------------------------------------------------------------------------------- /Assets/Shaders/Animation/Skinning.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Animation/Skinning.comp -------------------------------------------------------------------------------- /Assets/Shaders/Blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Blur.glsl -------------------------------------------------------------------------------- /Assets/Shaders/ComputeHealth.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ComputeHealth.comp -------------------------------------------------------------------------------- /Assets/Shaders/Defines.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Defines.glsl -------------------------------------------------------------------------------- /Assets/Shaders/FirstPerson/Weapon.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/FirstPerson/Weapon.frag -------------------------------------------------------------------------------- /Assets/Shaders/FirstPerson/Weapon.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/FirstPerson/Weapon.vert -------------------------------------------------------------------------------- /Assets/Shaders/FirstPerson/WeaponLiquid.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/FirstPerson/WeaponLiquid.frag -------------------------------------------------------------------------------- /Assets/Shaders/FirstPerson/WeaponLiquid.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/FirstPerson/WeaponLiquid.vert -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/Geom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/Geom.frag -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/Geom.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/Geom.mesh -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/Geom.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/Geom.vert -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/GeomMesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/GeomMesh.frag -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/GeomMeshPaint.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/GeomMeshPaint.frag -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/GeomMeshPaint.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/GeomMeshPaint.mesh -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/GeomMeshPaint.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/GeomMeshPaint.vert -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/GeomPlayer.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/GeomPlayer.frag -------------------------------------------------------------------------------- /Assets/Shaders/Geometry/Wireframe.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Geometry/Wireframe.geom -------------------------------------------------------------------------------- /Assets/Shaders/Helpers.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Helpers.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Helpers/Blit.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Helpers/Blit.frag -------------------------------------------------------------------------------- /Assets/Shaders/Helpers/Cube.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Helpers/Cube.vert -------------------------------------------------------------------------------- /Assets/Shaders/Helpers/FullscreenQuad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Helpers/FullscreenQuad.vert -------------------------------------------------------------------------------- /Assets/Shaders/ImGui/ImGuiHelpers.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ImGui/ImGuiHelpers.glsl -------------------------------------------------------------------------------- /Assets/Shaders/ImGui/ImGuiPixel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ImGui/ImGuiPixel.frag -------------------------------------------------------------------------------- /Assets/Shaders/ImGui/ImGuiVertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ImGui/ImGuiVertex.vert -------------------------------------------------------------------------------- /Assets/Shaders/MeshPaintFunc.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/MeshPaintFunc.glsl -------------------------------------------------------------------------------- /Assets/Shaders/MeshPaintHelper.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/MeshPaintHelper.glsl -------------------------------------------------------------------------------- /Assets/Shaders/MeshPainting/Unwrap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/MeshPainting/Unwrap.frag -------------------------------------------------------------------------------- /Assets/Shaders/MeshPainting/Unwrap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/MeshPainting/Unwrap.vert -------------------------------------------------------------------------------- /Assets/Shaders/NoesisGUI/NoesisGUI.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/NoesisGUI/NoesisGUI.frag -------------------------------------------------------------------------------- /Assets/Shaders/NoesisGUI/NoesisGUI.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/NoesisGUI/NoesisGUI.vert -------------------------------------------------------------------------------- /Assets/Shaders/NoesisGUI/NoesisInclude.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/NoesisGUI/NoesisInclude.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Noise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Noise.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Particles/Particle.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Particles/Particle.frag -------------------------------------------------------------------------------- /Assets/Shaders/Particles/Particle.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Particles/Particle.vert -------------------------------------------------------------------------------- /Assets/Shaders/Particles/ParticleCollider.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Particles/ParticleCollider.comp -------------------------------------------------------------------------------- /Assets/Shaders/Particles/ParticleCreation.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Particles/ParticleCreation.comp -------------------------------------------------------------------------------- /Assets/Shaders/Particles/ParticleUpdate.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Particles/ParticleUpdate.comp -------------------------------------------------------------------------------- /Assets/Shaders/Players/Players.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Players/Players.frag -------------------------------------------------------------------------------- /Assets/Shaders/Players/Players.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Players/Players.mesh -------------------------------------------------------------------------------- /Assets/Shaders/Players/Players.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Players/Players.vert -------------------------------------------------------------------------------- /Assets/Shaders/PostProcess/FXAA.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/PostProcess/FXAA.frag -------------------------------------------------------------------------------- /Assets/Shaders/PostProcess/TAA.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/PostProcess/TAA.frag -------------------------------------------------------------------------------- /Assets/Shaders/PostProcess/TAA_accumulation.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/PostProcess/TAA_accumulation.frag -------------------------------------------------------------------------------- /Assets/Shaders/Projectiles/MCTables.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Projectiles/MCTables.glsl -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/BxDF.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/BxDF.glsl -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/GaussianDenoiser.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/GaussianDenoiser.comp -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/ParticleAnyHit.rahit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/ParticleAnyHit.rahit -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/PrimaryMiss.rmiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/PrimaryMiss.rmiss -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/RayTracingInclude.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/RayTracingInclude.glsl -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/Raygen.rgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/Raygen.rgen -------------------------------------------------------------------------------- /Assets/Shaders/RayTracing/RaygenRQ.rgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/RayTracing/RaygenRQ.rgen -------------------------------------------------------------------------------- /Assets/Shaders/Reflections.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Reflections.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Sampling.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Sampling.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Shading/Shading.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Shading/Shading.frag -------------------------------------------------------------------------------- /Assets/Shaders/Shading/ShadingRQ.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Shading/ShadingRQ.frag -------------------------------------------------------------------------------- /Assets/Shaders/ShadowMap/DirLShadowMap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ShadowMap/DirLShadowMap.frag -------------------------------------------------------------------------------- /Assets/Shaders/ShadowMap/DirLShadowMap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ShadowMap/DirLShadowMap.vert -------------------------------------------------------------------------------- /Assets/Shaders/ShadowMap/PointLShadowMap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ShadowMap/PointLShadowMap.frag -------------------------------------------------------------------------------- /Assets/Shaders/ShadowMap/PointLShadowMap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/ShadowMap/PointLShadowMap.vert -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/CubemapGen.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/CubemapGen.comp -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/CubemapHelper.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/CubemapHelper.glsl -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/DiffuseCubemapFilter.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/DiffuseCubemapFilter.comp -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/IntegrationLUTGen.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/IntegrationLUTGen.comp -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/Skybox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/Skybox.frag -------------------------------------------------------------------------------- /Assets/Shaders/Skybox/SpecularCubemapFilter.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Skybox/SpecularCubemapFilter.comp -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Output.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Tessellation/Output.geom -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Passthrough.frag: -------------------------------------------------------------------------------- 1 | #version 460 2 | 3 | void main() 4 | { 5 | discard; 6 | } -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Passthrough.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Tessellation/Passthrough.tesc -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Passthrough.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Tessellation/Passthrough.tese -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Passthrough.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Tessellation/Passthrough.vert -------------------------------------------------------------------------------- /Assets/Shaders/Tessellation/Tessellator.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Shaders/Tessellation/Tessellator.comp -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/five.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/five.wav -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/four.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/four.wav -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/one.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/one.wav -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/start.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/three.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/three.wav -------------------------------------------------------------------------------- /Assets/Sounds/Countdown/two.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Countdown/two.wav -------------------------------------------------------------------------------- /Assets/Sounds/MainMenuCC.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/MainMenuCC.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Player/DeathSound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/DeathSound.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Player/HitSound0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/HitSound0.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Player/HitSound1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/HitSound1.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Player/Ping.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/Ping.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Player/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/jump.wav -------------------------------------------------------------------------------- /Assets/Sounds/Player/landing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/landing.wav -------------------------------------------------------------------------------- /Assets/Sounds/Player/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Player/step.wav -------------------------------------------------------------------------------- /Assets/Sounds/Weapon/Shootsound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Weapon/Shootsound.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/Weapon/WaterSound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Sounds/Weapon/WaterSound.mp3 -------------------------------------------------------------------------------- /Assets/Textures/MeshPainting/BrushMaskV3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/MeshPainting/BrushMaskV3.png -------------------------------------------------------------------------------- /Assets/Textures/Particles/ParticleAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/Particles/ParticleAtlas.png -------------------------------------------------------------------------------- /Assets/Textures/Player/CharacterAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/Player/CharacterAlbedo.png -------------------------------------------------------------------------------- /Assets/Textures/Skybox/CartoonSkyboxHomemade.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/Skybox/CartoonSkyboxHomemade.hdr -------------------------------------------------------------------------------- /Assets/Textures/fmod/FMOD Logo Guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/fmod/FMOD Logo Guidelines.pdf -------------------------------------------------------------------------------- /Assets/Textures/fmod/fmod_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/fmod/fmod_logo_black.png -------------------------------------------------------------------------------- /Assets/Textures/fmod/fmod_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/Textures/fmod/fmod_logo_white.png -------------------------------------------------------------------------------- /Assets/World/LevelModules/BunnyHop.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/World/LevelModules/BunnyHop.glb -------------------------------------------------------------------------------- /Assets/World/LevelModules/CanvasMap.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/World/LevelModules/CanvasMap.glb -------------------------------------------------------------------------------- /Assets/World/LevelModules/TheMines.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/World/LevelModules/TheMines.glb -------------------------------------------------------------------------------- /Assets/World/levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/World/levels.json -------------------------------------------------------------------------------- /Assets/guy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Assets/guy.ico -------------------------------------------------------------------------------- /CodeStandard.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CodeStandard.MD -------------------------------------------------------------------------------- /CrazyCanvas/Include/Chat/ChatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Chat/ChatManager.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/CrazyCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/CrazyCanvas.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/ECS/Systems/GUI/HUDSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/ECS/Systems/GUI/HUDSystem.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/EventHandlers/PingHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/EventHandlers/PingHandler.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/ChatEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/ChatEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/GameplayEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/GameplayEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/MatchEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/MatchEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/PacketEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/PacketEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/PlayerEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/PlayerEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Events/ServerEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Events/ServerEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/CountdownGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/CountdownGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/DamageIndicatorGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/DamageIndicatorGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/EnemyHitIndicatorGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/EnemyHitIndicatorGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/EscapeMenuGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/EscapeMenuGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/GUIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/GUIHelpers.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/GameOverGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/GameOverGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/HUDGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/HUDGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/KillFeedGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/KillFeedGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/LobbyGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/LobbyGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/MainMenuGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/MainMenuGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/MultiplayerGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/MultiplayerGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/PromptGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/PromptGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/SavedServerGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/SavedServerGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/ScoreBoardGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/ScoreBoardGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/GUI/SettingsGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/GUI/SettingsGUI.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/EServerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/EServerState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/Player.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/PlayerManagerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/PlayerManagerBase.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/PlayerManagerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/PlayerManagerClient.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/PlayerManagerServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/PlayerManagerServer.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/ServerFileStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/ServerFileStorage.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/ServerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/ServerInfo.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Lobby/ServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Lobby/ServerManager.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Match/Match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Match/Match.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Match/MatchBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Match/MatchBase.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Match/MatchClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Match/MatchClient.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Match/MatchGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Match/MatchGameMode.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Match/MatchServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Match/MatchServer.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/MeshPaint/MeshPaintHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/MeshPaint/MeshPaintHandler.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/MeshPaint/MeshPaintTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/MeshPaint/MeshPaintTypes.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Multiplayer/ClientHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Multiplayer/ClientHelper.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Multiplayer/Packet/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Multiplayer/Packet/Packet.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Multiplayer/ServerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Multiplayer/ServerHelper.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Physics/CollisionGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Physics/CollisionGroups.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Physics/PhysicsEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Physics/PhysicsEvents.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/RenderStages/HealthCompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/RenderStages/HealthCompute.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Resources/ResourceCatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Resources/ResourceCatalog.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/BenchmarkState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/BenchmarkState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/LobbyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/LobbyState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/MainMenuState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/MainMenuState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/MultiplayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/MultiplayerState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/PlaySessionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/PlaySessionState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/SandboxState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/SandboxState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/States/ServerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/States/ServerState.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/Teams/TeamHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/Teams/TeamHelper.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/Level.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/LevelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/LevelManager.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/LevelModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/LevelModule.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/LevelObjectCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/LevelObjectCreator.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/SessionSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/SessionSettings.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/SessionSettingsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/SessionSettingsTypes.h -------------------------------------------------------------------------------- /CrazyCanvas/Include/World/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Include/World/World.h -------------------------------------------------------------------------------- /CrazyCanvas/Saved_Servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Saved_Servers.json -------------------------------------------------------------------------------- /CrazyCanvas/Source/Chat/ChatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Chat/ChatManager.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/CrazyCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/CrazyCanvas.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/ECS/Systems/GUI/HUDSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/ECS/Systems/GUI/HUDSystem.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/EventHandlers/PingHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/EventHandlers/PingHandler.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/CountdownGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/CountdownGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/DamageIndicatorGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/DamageIndicatorGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/EnemyHitIndicatorGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/EnemyHitIndicatorGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/EscapeMenuGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/EscapeMenuGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/GameOverGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/GameOverGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/HUDGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/HUDGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/KillFeedGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/KillFeedGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/LobbyGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/LobbyGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/MainMenuGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/MainMenuGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/MultiplayerGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/MultiplayerGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/PromptGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/PromptGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/ScoreBoardGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/ScoreBoardGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/GUI/SettingsGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/GUI/SettingsGUI.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/Player.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/PlayerManagerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/PlayerManagerBase.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/PlayerManagerClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/PlayerManagerClient.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/PlayerManagerServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/PlayerManagerServer.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/ServerFileStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/ServerFileStorage.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Lobby/ServerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Lobby/ServerManager.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Match/Match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Match/Match.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Match/MatchBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Match/MatchBase.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Match/MatchClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Match/MatchClient.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Match/MatchServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Match/MatchServer.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Multiplayer/ClientHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Multiplayer/ClientHelper.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Multiplayer/PacketType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Multiplayer/PacketType.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Multiplayer/ServerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Multiplayer/ServerHelper.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Resources/ResourceCatalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Resources/ResourceCatalog.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/BenchmarkState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/BenchmarkState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/LobbyState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/LobbyState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/MainMenuState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/MainMenuState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/MultiplayerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/MultiplayerState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/PlaySessionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/PlaySessionState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/SandboxState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/SandboxState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/States/ServerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/States/ServerState.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/Teams/TeamHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/Teams/TeamHelper.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/World/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/World/Level.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/World/LevelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/World/LevelManager.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/World/LevelModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/World/LevelModule.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/World/LevelObjectCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/World/LevelObjectCreator.cpp -------------------------------------------------------------------------------- /CrazyCanvas/Source/World/SessionSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/Source/World/SessionSettings.cpp -------------------------------------------------------------------------------- /CrazyCanvas/engine_config_crazycanvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/engine_config_crazycanvas.json -------------------------------------------------------------------------------- /CrazyCanvas/engine_config_sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/engine_config_sandbox.json -------------------------------------------------------------------------------- /CrazyCanvas/engine_config_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/engine_config_server.json -------------------------------------------------------------------------------- /CrazyCanvas/key_bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvas/key_bindings.json -------------------------------------------------------------------------------- /CrazyCanvasInstall.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/CrazyCanvasInstall.iss -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NoesisLicense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NoesisLicense.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NoesisPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NoesisPCH.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/ArrayRef.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Atomic.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Atomic.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Atomic.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Boxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Boxing.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Boxing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Boxing.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Category.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Delegate.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Error.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Factory.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Find.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Find.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Find.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Hash.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Hash.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/HashMap.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/IdOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/IdOf.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/IdOf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/IdOf.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Init.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Log.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Math.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Math.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Memory.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/MetaData.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Noesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Noesis.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Nullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Nullable.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Package.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Pair.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Pair.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Pair.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Ptr.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Ptr.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Sort.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Sort.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Sort.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/String.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/String.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/String.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Symbol.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Symbol.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Symbol.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Type.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/TypeEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/TypeEnum.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/TypeMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/TypeMeta.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/TypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/TypeOf.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/TypeOf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/TypeOf.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/UTF8.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/UTF8.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/UTF8.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Vector.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Vector.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsCore/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsCore/Version.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsDrawing/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsDrawing/Color.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsDrawing/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsDrawing/Point.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsDrawing/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsDrawing/Rect.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsDrawing/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsDrawing/Size.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/BackEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/BackEase.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/BaseMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/BaseMenu.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/BaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/BaseView.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Binding.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Bold.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Border.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Brush.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Brushes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Brushes.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Button.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Canvas.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/CheckBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Clock.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Colors.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ComboBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Condition.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Control.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/CoreApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/CoreApi.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/CubicEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/CubicEase.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/DashStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/DashStyle.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Decorator.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/DockPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/DockPanel.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/DragDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/DragDrop.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Duration.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Effect.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Element.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Ellipse.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Enums.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Events.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Expander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Expander.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Freezable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Freezable.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Geometry.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Grid.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/GridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/GridView.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/GroupBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Hyperlink.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ICommand.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/IList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/IList.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/IRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/IRenderer.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ISealable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ISealable.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/IView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/IView.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Image.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Inline.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Italic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Italic.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/KeySpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/KeySpline.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/KeyTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/KeyTime.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/KeyTime.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/KeyTime.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Keyboard.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Label.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Line.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/LineBreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/LineBreak.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ListBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ListView.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Menu.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/MenuItem.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Mouse.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/NameScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/NameScope.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Page.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Panel.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Path.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Pen.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Popup.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/PowerEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/PowerEase.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/RangeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/RangeBase.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Rectangle.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Run.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ScrollBar.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Selector.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Separator.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Setter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Setter.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Shape.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/SineEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/SineEase.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Slider.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Span.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/StatusBar.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Stream.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Style.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TabItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TabItem.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TabPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TabPanel.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Text.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TextBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TextBlock.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TextBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Thumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Thumb.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Thumb.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Thumb.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TickBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TickBar.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TileBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TileBrush.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TimeSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TimeSpan.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Timeline.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ToolBar.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/ToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/ToolTip.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Track.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Transform.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/TreeView.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Trigger.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/UIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/UIElement.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Underline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Underline.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Uri.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Viewbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Viewbox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/Visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/Visual.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsGui/WrapPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsGui/WrapPanel.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/AABBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/AABBox.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/AABBox.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/AABBox.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/Matrix.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/Matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/Matrix.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/Vector.h -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Include/NsMath/Vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Include/NsMath/Vector.inl -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Lib/Noesis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Lib/Noesis.dll -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Lib/Noesis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Lib/Noesis.lib -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Lib/NoesisApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Lib/NoesisApp.dll -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Lib/NoesisApp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Lib/NoesisApp.exp -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Lib/NoesisApp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Lib/NoesisApp.lib -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Providers/Src/FastLZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Providers/Src/FastLZ.cpp -------------------------------------------------------------------------------- /Dependencies/NoesisGUI/Providers/Src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/NoesisGUI/Providers/Src/stb_image.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxActor.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxAggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxAggregate.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxArticulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxArticulation.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxArticulationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxArticulationBase.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxArticulationJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxArticulationJoint.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxArticulationLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxArticulationLink.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxBatchQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxBatchQuery.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxBatchQueryDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxBatchQueryDesc.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxBroadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxBroadPhase.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxClient.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxConfig.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxConstraint.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxConstraintDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxConstraintDesc.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxContact.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxDeletionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxDeletionListener.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxFiltering.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxForceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxForceMode.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxFoundation.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxImmediateMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxImmediateMode.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxLockedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxLockedData.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxMaterial.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxPhysXConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxPhysXConfig.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxPhysics.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxPhysicsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxPhysicsAPI.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxPhysicsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxPhysicsVersion.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxPruningStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxPruningStructure.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxQueryFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxQueryFiltering.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxQueryReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxQueryReport.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxRigidActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxRigidActor.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxRigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxRigidBody.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxRigidDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxRigidDynamic.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxRigidStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxRigidStatic.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxScene.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxSceneDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxSceneDesc.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxSceneLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxSceneLock.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/PxShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/PxShape.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/common/PxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/common/PxBase.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/common/PxCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/common/PxCollection.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/common/PxMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/common/PxMetaData.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/common/PxSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/common/PxSerializer.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/common/PxTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/common/PxTypeInfo.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/cooking/PxCooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/cooking/PxCooking.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/cooking/Pxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/cooking/Pxc.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/extensions/PxJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/extensions/PxJoint.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/filebuf/PxFileBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/filebuf/PxFileBuf.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/Px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/Px.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxAssert.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxErrors.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxFlags.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxIO.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxMat33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxMat33.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxMat44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxMat44.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxMath.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxMemory.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxPlane.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxQuat.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxVec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxVec2.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxVec3.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/foundation/PxVec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/foundation/PxVec4.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/geometry/PxGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/geometry/PxGeometry.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/geometry/PxTriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/geometry/PxTriangle.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/gpu/PxGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/gpu/PxGpu.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/pvd/PxPvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/pvd/PxPvd.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/pvd/PxPvdTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/pvd/PxPvdTransport.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/solver/PxSolverDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/solver/PxSolverDefs.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/task/PxTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/task/PxTask.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/task/PxTaskDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/task/PxTaskDefine.h -------------------------------------------------------------------------------- /Dependencies/PhysX/include/task/PxTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/include/task/PxTaskManager.h -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/checked/PhysXGpu_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/checked/PhysXGpu_64.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/checked/PhysX_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/checked/PhysX_64.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/checked/PhysX_64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/checked/PhysX_64.exp -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/checked/PhysX_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/checked/PhysX_64.lib -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/checked/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/checked/glut32.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/PhysXDevice64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/PhysXDevice64.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/PhysXGpu_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/PhysXGpu_64.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/PhysX_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/PhysX_64.dll -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/PhysX_64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/PhysX_64.exp -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/PhysX_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/PhysX_64.lib -------------------------------------------------------------------------------- /Dependencies/PhysX/lib/release/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/PhysX/lib/release/glut32.dll -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/IrrXMLd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/IrrXMLd.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/assimpd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/assimpd.exp -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/assimpd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/assimpd.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/unit.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/unit.exp -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/unit.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/unit.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/debug/zlibstaticd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/debug/zlibstaticd.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/IrrXML.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/IrrXML.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/assimp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/assimp.exp -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/assimp.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/unit.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/unit.exp -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/unit.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/unit.lib -------------------------------------------------------------------------------- /Dependencies/assimp/bin/release/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/bin/release/zlibstatic.lib -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/.editorconfig -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Defines.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Hash.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Macros.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Profiler.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/SmallVector.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/aabb.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/color4.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/config.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/config.h.in -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/material.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/material.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/metadata.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/qnan.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /Dependencies/assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /Dependencies/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Dependencies/stb/stb_image.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LICENSE -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/API/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/API/Console.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/API/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/API/Misc.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/API/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/API/Window.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/Mac/MacMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/Mac/MacMisc.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/Mac/MacWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/Mac/MacWindow.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Application/Win32/Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Application/Win32/Windows.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Assert/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Assert/Assert.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/AudioTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/AudioTypes.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/IAudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/IAudioDevice.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/IAudioGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/IAudioGeometry.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/IMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/IMusic.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/IReverbSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/IReverbSphere.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/ISoundEffect2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/ISoundEffect2D.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/API/ISoundEffect3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/API/ISoundEffect3D.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/AudioAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/AudioAPI.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/FMOD/FMOD.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include -------------------------------------------------------------------------------- /LambdaEngine/Include/Audio/FMOD/MusicFMOD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Audio/FMOD/MusicFMOD.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/CCBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/CCBuffer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/IDContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/IDContainer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/IDVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/IDVector.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/String.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TArray.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TArray.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TArray.natvis -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/THashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/THashTable.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TQueue.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TSet.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TSharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TSharedPtr.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TStack.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TUniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TUniquePtr.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Containers/TUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Containers/TUtilities.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Core/RefCountedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Core/RefCountedObject.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Core/TSharedRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Core/TSharedRef.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Core/TSharedRef.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Core/TSharedRef.natvis -------------------------------------------------------------------------------- /LambdaEngine/Include/Debug/CPUProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Debug/CPUProfiler.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Debug/GPUProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Debug/GPUProfiler.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Debug/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Debug/Profiler.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Defines.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/Component.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ComponentArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ComponentArray.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ComponentOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ComponentOwner.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ComponentStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ComponentStorage.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ComponentType.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ECSCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ECSCore.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/ECSVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/ECSVisualizer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/Entity.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/EntityPublisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/EntityPublisher.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/EntityRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/EntityRegistry.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/EntitySubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/EntitySubscriber.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/Job.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/JobScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/JobScheduler.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/RegularWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/RegularWorker.h -------------------------------------------------------------------------------- /LambdaEngine/Include/ECS/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/ECS/System.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Engine/ConfigCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Engine/ConfigCodes.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Engine/EngineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Engine/EngineConfig.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Engine/EngineLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Engine/EngineLoop.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIApplication.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIHelpers.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIInputMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIInputMapper.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIRenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIRenderTarget.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIRenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUIShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUIShaderManager.h -------------------------------------------------------------------------------- /LambdaEngine/Include/GUI/Core/GUITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/GUI/Core/GUITexture.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/ConsoleCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/ConsoleCommand.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/Game.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/GameConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/GameConsole.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/PlayerIndexHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/PlayerIndexHelper.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/State.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Game/StateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Game/StateManager.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Input/API/ActionCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Input/API/ActionCodes.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Input/API/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Input/API/Input.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Input/API/InputCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Input/API/InputCodes.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Input/API/InputState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Input/API/InputState.h -------------------------------------------------------------------------------- /LambdaEngine/Include/LambdaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/LambdaEngine.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Log/Log.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Math/Math.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Math/MathUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Math/MathUtilities.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Math/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Math/Random.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/API/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/API/Malloc.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/API/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/API/Memory.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/API/New.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/API/New.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/API/PlatformMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/API/PlatformMemory.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/API/StackAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/API/StackAllocator.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/Mac/MacMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/Mac/MacMemory.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Memory/Win32/Win32Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Memory/Win32/Win32Memory.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/ClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/ClientBase.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/EProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/EProtocol.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/IClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/IClient.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/IPAddress.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/IPEndPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/IPEndPoint.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/ISocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/ISocket.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/NetWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/NetWorker.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Networking/API/ServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Networking/API/ServerBase.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Physics/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Physics/BoundingBox.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Physics/PhysX/PhysX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Physics/PhysX/PhysX.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/AARenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/AARenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/BlitStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/BlitStage.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/Core/API/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/Core/API/Buffer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/Core/API/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/Core/API/Fence.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/Core/API/SBT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/Core/API/SBT.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/Core/API/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/Core/API/Shader.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/CustomRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/CustomRenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/ImGuiRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/ImGuiRenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/LightRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/LightRenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/LineRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/LineRenderer.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/ParticleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/ParticleManager.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/ParticleUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/ParticleUpdater.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/RT/ASBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/RT/ASBuilder.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/RenderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/RenderAPI.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Rendering/RenderGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Rendering/RenderGraph.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/GLSLang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/GLSLang.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/Material.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/Mesh.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/MeshTessellator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/MeshTessellator.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/ResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/ResourceLoader.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/ResourceManager.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/ResourcePaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Resources/ResourcePaths.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Resources/STB.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define STB_IMAGE_IMPLEMENTATION 4 | #include "stb_image.h" -------------------------------------------------------------------------------- /LambdaEngine/Include/Threading/API/SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Threading/API/SpinLock.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Threading/API/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Threading/API/Thread.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Threading/API/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Threading/API/ThreadPool.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/API/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/API/Clock.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/API/PlatformTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/API/PlatformTime.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/API/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/API/Time.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/API/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/API/Timestamp.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/Mac/MacTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/Mac/MacTime.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Time/Win32/Win32Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Time/Win32/Win32Time.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Types.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/HashUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/HashUtilities.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/IDGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/IDGenerator.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/IOUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/IOUtilities.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/RuntimeStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/RuntimeStats.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/SHA256.h -------------------------------------------------------------------------------- /LambdaEngine/Include/Utilities/StringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Include/Utilities/StringHash.h -------------------------------------------------------------------------------- /LambdaEngine/PreCompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "PreCompiled.h" -------------------------------------------------------------------------------- /LambdaEngine/PreCompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/PreCompiled.h -------------------------------------------------------------------------------- /LambdaEngine/Source/Assert/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Assert/Assert.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Audio/API/AudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Audio/API/AudioDevice.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Audio/AudioAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Audio/AudioAPI.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Audio/FMOD/MusicFMOD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Audio/FMOD/MusicFMOD.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Core/RefCountedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Core/RefCountedObject.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Debug/CPUProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Debug/CPUProfiler.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Debug/GPUProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Debug/GPUProfiler.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Debug/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Debug/Profiler.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/ComponentOwner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/ComponentOwner.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/ComponentStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/ComponentStorage.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/ComponentType.cpp: -------------------------------------------------------------------------------- 1 | #include "ECS/ComponentType.h" 2 | -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/ECSCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/ECSCore.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/ECSVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/ECSVisualizer.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/EntityPublisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/EntityPublisher.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/EntityRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/EntityRegistry.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/EntitySubscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/EntitySubscriber.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/JobScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/JobScheduler.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/RegularWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/RegularWorker.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/ECS/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/ECS/System.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Engine/EngineConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Engine/EngineConfig.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Engine/EngineLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Engine/EngineLoop.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/GUI/Core/GUIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/GUI/Core/GUIRenderer.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/GUI/Core/GUITexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/GUI/Core/GUITexture.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Game/ConsoleCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Game/ConsoleCommand.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Game/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Game/Game.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Game/GameConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Game/GameConsole.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Game/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Game/State.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Game/StateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Game/StateManager.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Input/API/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Input/API/Input.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Launch/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Launch/Main.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Log/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Log/Log.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Math/Math.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Math/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Math/Random.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Memory/API/Malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Memory/API/Malloc.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Memory/API/New.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Memory/API/New.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Memory/Mac/MacMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Memory/Mac/MacMemory.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Rendering/AARenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Rendering/AARenderer.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Rendering/BlitStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Rendering/BlitStage.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Rendering/RenderAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Rendering/RenderAPI.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Rendering/RenderGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Rendering/RenderGraph.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Resources/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Resources/Mesh.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Threading/API/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Threading/API/Thread.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Time/API/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Time/API/Clock.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Utilities/IDGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Utilities/IDGenerator.cpp -------------------------------------------------------------------------------- /LambdaEngine/Source/Utilities/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/LambdaEngine/Source/Utilities/SHA256.cpp -------------------------------------------------------------------------------- /Licenses/physx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Licenses/physx.md -------------------------------------------------------------------------------- /Premake vs2017.bat: -------------------------------------------------------------------------------- 1 | premake5.exe vs2017 2 | pause -------------------------------------------------------------------------------- /Premake vs2019.bat: -------------------------------------------------------------------------------- 1 | premake5.exe vs2019 2 | pause -------------------------------------------------------------------------------- /Premake xcode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Premake xcode.command -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/README.md -------------------------------------------------------------------------------- /Tools/glslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Tools/glslc -------------------------------------------------------------------------------- /Tools/glslc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Tools/glslc.exe -------------------------------------------------------------------------------- /Update_Dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Update_Dependencies.bat -------------------------------------------------------------------------------- /Update_Dependencies.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/Update_Dependencies.command -------------------------------------------------------------------------------- /compile_shaders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/compile_shaders.bat -------------------------------------------------------------------------------- /compile_shaders.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/compile_shaders.command -------------------------------------------------------------------------------- /premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/premake5 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IbexOmega/CrazyCanvas/HEAD/premake5.lua --------------------------------------------------------------------------------