├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CodeAnalysis └── BannedSymbols.txt ├── Directory.Build.props ├── LICENSE ├── README.md ├── app.manifest ├── fluXis.Android.slnf ├── fluXis.Android ├── AndroidManifest.xml ├── FluXisGameAndroid.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── drawable │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher_monochrome.xml │ └── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml └── fluXis.Android.csproj ├── fluXis.Desktop.slnf ├── fluXis.Desktop ├── FileExtensionHelper.cs ├── FluXisGameDesktop.cs ├── Integration │ ├── DiscordActivity.cs │ ├── OpenRGBController.cs │ └── SteamManager.cs ├── Program.cs ├── app.manifest ├── fluXis.Desktop.csproj ├── game.ico ├── libsteam_api.so └── steam_api64.dll ├── fluXis.Import.Quaver ├── Map │ ├── QuaverMap.cs │ ├── QuaverMapInfo.cs │ ├── QuaverRealmMap.cs │ ├── QuaverRealmMapSet.cs │ └── Structs │ │ ├── QuaverBookmark.cs │ │ ├── QuaverHitObjectInfo.cs │ │ ├── QuaverSliderVelocityInfo.cs │ │ └── QuaverTimingPointInfo.cs ├── QuaverImport.cs ├── QuaverPlugin.cs ├── QuaverPluginConfig.cs └── fluXis.Import.Quaver.csproj ├── fluXis.Import.Stepmania ├── AutoImport │ ├── StepManiaRealmMap.cs │ └── StepmaniaRealmMapSet.cs ├── Map │ ├── Components │ │ ├── StepBpm.cs │ │ ├── StepChart.cs │ │ ├── StepMeasure.cs │ │ ├── StepNote.cs │ │ └── StepStop.cs │ ├── StepRollNote.cs │ └── StepmaniaFile.cs ├── StepmaniaImport.cs ├── StepmaniaPlugin.cs ├── StepmaniaPluginConfig.cs └── fluXis.Import.Stepmania.csproj ├── fluXis.Import.osu ├── AutoImport │ ├── OsuMapInfo.cs │ ├── OsuRealmMap.cs │ └── OsuRealmMapSet.cs ├── Map │ ├── Components │ │ ├── OsuEvent.cs │ │ ├── OsuHitObject.cs │ │ └── OsuTimingPoint.cs │ ├── Enums │ │ └── OsuFileSection.cs │ ├── OsuMap.cs │ └── OsuParser.cs ├── OsuImport.cs ├── OsuPlugin.cs ├── OsuPluginConfig.cs ├── Storyboards │ ├── OsuStoryboardLoop.cs │ └── OsuStoryboardParser.cs └── fluXis.Import.osu.csproj ├── fluXis.Resources ├── FluXisResources.cs ├── Fonts │ ├── FontAwesome6 │ │ ├── FontAwesome6-Brands.fnt │ │ ├── FontAwesome6-Brands_0.png │ │ ├── FontAwesome6-Brands_1.png │ │ ├── FontAwesome6-Brands_2.png │ │ ├── FontAwesome6-Brands_3.png │ │ ├── FontAwesome6-Brands_4.png │ │ ├── FontAwesome6-Regular.fnt │ │ ├── FontAwesome6-Regular_0.png │ │ ├── FontAwesome6-Regular_1.png │ │ ├── FontAwesome6-Regular_2.png │ │ ├── FontAwesome6-Regular_3.png │ │ ├── FontAwesome6-Solid.fnt │ │ ├── FontAwesome6-Solid_00.png │ │ ├── FontAwesome6-Solid_01.png │ │ ├── FontAwesome6-Solid_02.png │ │ ├── FontAwesome6-Solid_03.png │ │ ├── FontAwesome6-Solid_04.png │ │ ├── FontAwesome6-Solid_05.png │ │ ├── FontAwesome6-Solid_06.png │ │ ├── FontAwesome6-Solid_07.png │ │ ├── FontAwesome6-Solid_08.png │ │ ├── FontAwesome6-Solid_09.png │ │ ├── FontAwesome6-Solid_10.png │ │ ├── FontAwesome6-Solid_11.png │ │ ├── FontAwesome6-Solid_12.png │ │ ├── FontAwesome6-Solid_13.png │ │ ├── FontAwesome6-Solid_14.png │ │ ├── FontAwesome6-Solid_15.png │ │ ├── FontAwesome6-Solid_16.png │ │ ├── FontAwesome6-Solid_17.png │ │ ├── FontAwesome6-Solid_18.png │ │ ├── FontAwesome6-Solid_19.png │ │ ├── FontAwesome6-Solid_20.png │ │ ├── FontAwesome6-Solid_21.png │ │ ├── FontAwesome6-Solid_22.png │ │ ├── FontAwesome6-Solid_23.png │ │ ├── FontAwesome6-Solid_24.png │ │ ├── FontAwesome6-Solid_25.png │ │ ├── FontAwesome6-Solid_26.png │ │ ├── FontAwesome6-Solid_27.png │ │ ├── FontAwesome6-Solid_28.png │ │ ├── FontAwesome6-Solid_29.png │ │ ├── FontAwesome6-Solid_30.png │ │ ├── FontAwesome6-Solid_31.png │ │ ├── FontAwesome6-Solid_32.png │ │ ├── FontAwesome6-Solid_33.png │ │ ├── FontAwesome6-Solid_34.png │ │ ├── FontAwesome6-Solid_35.png │ │ ├── FontAwesome6-Solid_36.png │ │ ├── FontAwesome6-Solid_37.png │ │ └── FontAwesome6-Solid_38.png │ ├── JetBrainsMono │ │ ├── JetBrainsMono.fnt │ │ ├── JetBrainsMono_0.png │ │ ├── JetBrainsMono_1.png │ │ └── JetBrainsMono_2.png │ ├── MOBO │ │ ├── MOBO.fnt │ │ ├── MOBO_00.png │ │ ├── MOBO_01.png │ │ ├── MOBO_02.png │ │ ├── MOBO_03.png │ │ ├── MOBO_04.png │ │ ├── MOBO_05.png │ │ ├── MOBO_06.png │ │ ├── MOBO_07.png │ │ ├── MOBO_08.png │ │ ├── MOBO_09.png │ │ ├── MOBO_10.png │ │ ├── MOBO_11.png │ │ ├── MOBO_12.png │ │ ├── MOBO_13.png │ │ ├── MOBO_14.png │ │ ├── MOBO_15.png │ │ ├── MOBO_16.png │ │ ├── MOBO_17.png │ │ ├── MOBO_18.png │ │ ├── MOBO_19.png │ │ ├── MOBO_20.png │ │ ├── MOBO_21.png │ │ ├── MOBO_22.png │ │ ├── MOBO_23.png │ │ ├── MOBO_24.png │ │ ├── MOBO_25.png │ │ ├── MOBO_26.png │ │ ├── MOBO_27.png │ │ ├── MOBO_28.png │ │ ├── MOBO_29.png │ │ ├── MOBO_30.png │ │ └── MOBO_31.png │ ├── Noto │ │ ├── LICENSE.txt │ │ ├── Noto-Basic.bin │ │ ├── Noto-Basic_0.png │ │ ├── Noto-Basic_1.png │ │ ├── Noto-Basic_2.png │ │ ├── Noto-Basic_3.png │ │ ├── Noto-CJK-Basic.bin │ │ ├── Noto-CJK-Basic_00.png │ │ ├── Noto-CJK-Basic_01.png │ │ ├── Noto-CJK-Basic_02.png │ │ ├── Noto-CJK-Basic_03.png │ │ ├── Noto-CJK-Basic_04.png │ │ ├── Noto-CJK-Basic_05.png │ │ ├── Noto-CJK-Basic_06.png │ │ ├── Noto-CJK-Basic_07.png │ │ ├── Noto-CJK-Basic_08.png │ │ ├── Noto-CJK-Basic_09.png │ │ ├── Noto-CJK-Basic_10.png │ │ ├── Noto-CJK-Basic_11.png │ │ ├── Noto-CJK-Basic_12.png │ │ ├── Noto-CJK-Basic_13.png │ │ ├── Noto-CJK-Basic_14.png │ │ ├── Noto-CJK-Basic_15.png │ │ ├── Noto-CJK-Basic_16.png │ │ ├── Noto-CJK-Basic_17.png │ │ ├── Noto-CJK-Basic_18.png │ │ ├── Noto-CJK-Basic_19.png │ │ ├── Noto-CJK-Basic_20.png │ │ ├── Noto-CJK-Basic_21.png │ │ ├── Noto-CJK-Basic_22.png │ │ ├── Noto-CJK-Basic_23.png │ │ ├── Noto-CJK-Basic_24.png │ │ ├── Noto-CJK-Basic_25.png │ │ ├── Noto-CJK-Basic_26.png │ │ ├── Noto-CJK-Basic_27.png │ │ ├── Noto-CJK-Basic_28.png │ │ ├── Noto-CJK-Basic_29.png │ │ ├── Noto-CJK-Basic_30.png │ │ ├── Noto-CJK-Basic_31.png │ │ ├── Noto-CJK-Basic_32.png │ │ ├── Noto-CJK-Basic_33.png │ │ ├── Noto-CJK-Basic_34.png │ │ ├── Noto-CJK-Basic_35.png │ │ ├── Noto-CJK-Basic_36.png │ │ ├── Noto-CJK-Basic_37.png │ │ ├── Noto-CJK-Basic_38.png │ │ ├── Noto-CJK-Basic_39.png │ │ ├── Noto-CJK-Basic_40.png │ │ ├── Noto-CJK-Basic_41.png │ │ ├── Noto-CJK-Basic_42.png │ │ ├── Noto-CJK-Basic_43.png │ │ ├── Noto-CJK-Basic_44.png │ │ ├── Noto-CJK-Basic_45.png │ │ ├── Noto-CJK-Basic_46.png │ │ ├── Noto-CJK-Basic_47.png │ │ ├── Noto-CJK-Basic_48.png │ │ ├── Noto-CJK-Basic_49.png │ │ ├── Noto-CJK-Basic_50.png │ │ ├── Noto-CJK-Basic_51.png │ │ ├── Noto-CJK-Basic_52.png │ │ ├── Noto-CJK-Basic_53.png │ │ ├── Noto-CJK-Basic_54.png │ │ ├── Noto-CJK-Basic_55.png │ │ ├── Noto-CJK-Basic_56.png │ │ ├── Noto-CJK-Basic_57.png │ │ ├── Noto-CJK-Basic_58.png │ │ ├── Noto-CJK-Basic_59.png │ │ ├── Noto-CJK-Basic_60.png │ │ ├── Noto-CJK-Basic_61.png │ │ ├── Noto-CJK-Basic_62.png │ │ ├── Noto-CJK-Basic_63.png │ │ ├── Noto-CJK-Basic_64.png │ │ ├── Noto-CJK-Basic_65.png │ │ ├── Noto-CJK-Basic_66.png │ │ ├── Noto-CJK-Basic_67.png │ │ ├── Noto-CJK-Basic_68.png │ │ ├── Noto-CJK-Basic_69.png │ │ ├── Noto-CJK-Basic_70.png │ │ ├── Noto-CJK-Basic_71.png │ │ ├── Noto-CJK-Basic_72.png │ │ ├── Noto-CJK-Basic_73.png │ │ ├── Noto-CJK-Basic_74.png │ │ ├── Noto-CJK-Basic_75.png │ │ ├── Noto-CJK-Basic_76.png │ │ ├── Noto-CJK-Basic_77.png │ │ ├── Noto-CJK-Basic_78.png │ │ ├── Noto-CJK-Basic_79.png │ │ ├── Noto-CJK-Basic_80.png │ │ ├── Noto-CJK-Basic_81.png │ │ ├── Noto-CJK-Basic_82.png │ │ ├── Noto-CJK-Basic_83.png │ │ ├── Noto-CJK-Basic_84.png │ │ ├── Noto-CJK-Basic_85.png │ │ ├── Noto-CJK-Basic_86.png │ │ ├── Noto-CJK-Basic_87.png │ │ ├── Noto-CJK-Basic_88.png │ │ ├── Noto-CJK-Basic_89.png │ │ ├── Noto-CJK-Basic_90.png │ │ ├── Noto-CJK-Basic_91.png │ │ ├── Noto-CJK-Basic_92.png │ │ ├── Noto-CJK-Basic_93.png │ │ ├── Noto-CJK-Compatibility.bin │ │ ├── Noto-CJK-Compatibility_00.png │ │ ├── Noto-CJK-Compatibility_01.png │ │ ├── Noto-CJK-Compatibility_02.png │ │ ├── Noto-CJK-Compatibility_03.png │ │ ├── Noto-CJK-Compatibility_04.png │ │ ├── Noto-CJK-Compatibility_05.png │ │ ├── Noto-CJK-Compatibility_06.png │ │ ├── Noto-CJK-Compatibility_07.png │ │ ├── Noto-CJK-Compatibility_08.png │ │ ├── Noto-CJK-Compatibility_09.png │ │ ├── Noto-CJK-Compatibility_10.png │ │ ├── Noto-CJK-Compatibility_11.png │ │ ├── Noto-CJK-Compatibility_12.png │ │ ├── Noto-CJK-Compatibility_13.png │ │ ├── Noto-CJK-Compatibility_14.png │ │ ├── Noto-CJK-Compatibility_15.png │ │ ├── Noto-CJK-Compatibility_16.png │ │ ├── Noto-CJK-Compatibility_17.png │ │ ├── Noto-CJK-Compatibility_18.png │ │ ├── Noto-CJK-Compatibility_19.png │ │ ├── Noto-CJK-Compatibility_20.png │ │ ├── Noto-CJK-Compatibility_21.png │ │ ├── Noto-CJK-Compatibility_22.png │ │ ├── Noto-CJK-Compatibility_23.png │ │ ├── Noto-CJK-Compatibility_24.png │ │ ├── Noto-CJK-Compatibility_25.png │ │ ├── Noto-CJK-Compatibility_26.png │ │ ├── Noto-CJK-Compatibility_27.png │ │ ├── Noto-CJK-Compatibility_28.png │ │ ├── Noto-CJK-Compatibility_29.png │ │ ├── Noto-CJK-Compatibility_30.png │ │ ├── Noto-Hangul.bin │ │ ├── Noto-Hangul_00.png │ │ ├── Noto-Hangul_01.png │ │ ├── Noto-Hangul_02.png │ │ ├── Noto-Hangul_03.png │ │ ├── Noto-Hangul_04.png │ │ ├── Noto-Hangul_05.png │ │ ├── Noto-Hangul_06.png │ │ ├── Noto-Hangul_07.png │ │ ├── Noto-Hangul_08.png │ │ ├── Noto-Hangul_09.png │ │ ├── Noto-Hangul_10.png │ │ ├── Noto-Hangul_11.png │ │ ├── Noto-Hangul_12.png │ │ ├── Noto-Hangul_13.png │ │ ├── Noto-Hangul_14.png │ │ ├── Noto-Hangul_15.png │ │ ├── Noto-Hangul_16.png │ │ ├── Noto-Hangul_17.png │ │ ├── Noto-Hangul_18.png │ │ ├── Noto-Hangul_19.png │ │ ├── Noto-Hangul_20.png │ │ ├── Noto-Hangul_21.png │ │ ├── Noto-Hangul_22.png │ │ ├── Noto-Hangul_23.png │ │ ├── Noto-Hangul_24.png │ │ ├── Noto-Hangul_25.png │ │ ├── Noto-Hangul_26.png │ │ ├── Noto-Hangul_27.png │ │ ├── Noto-Hangul_28.png │ │ ├── Noto-Hangul_29.png │ │ ├── Noto-Hangul_30.png │ │ ├── Noto-Hangul_31.png │ │ ├── Noto-Hangul_32.png │ │ ├── Noto-Hangul_33.png │ │ ├── Noto-Hangul_34.png │ │ ├── Noto-Hangul_35.png │ │ ├── Noto-Hangul_36.png │ │ ├── Noto-Hangul_37.png │ │ ├── Noto-Hangul_38.png │ │ ├── Noto-Hangul_39.png │ │ ├── Noto-Hangul_40.png │ │ ├── Noto-Hangul_41.png │ │ ├── Noto-Hangul_42.png │ │ ├── Noto-Hangul_43.png │ │ ├── Noto-Hangul_44.png │ │ ├── Noto-Thai.bin │ │ ├── Noto-Thai_0.png │ │ └── bmfont-cjk.bmfc │ ├── Renogare │ │ ├── Renogare.fnt │ │ └── Renogare_0.png │ ├── RenogareSoft │ │ ├── RenogareSoft.fnt │ │ └── RenogareSoft_0.png │ └── YoureGone │ │ ├── YoureGone.fnt │ │ ├── YoureGone_0.png │ │ └── YoureGone_1.png ├── Localization │ ├── de │ │ ├── general.json │ │ ├── mainmenu.json │ │ ├── mods.json │ │ ├── modselect.json │ │ ├── settings-appearance.json │ │ ├── settings-general.json │ │ └── song-select.json │ ├── en │ │ ├── dashboard.json │ │ ├── general.json │ │ ├── mainmenu.json │ │ ├── mods.json │ │ ├── modselect.json │ │ ├── settings-appearance.json │ │ ├── settings-audio.json │ │ ├── settings-debug.json │ │ ├── settings-gameplay.json │ │ ├── settings-general.json │ │ ├── settings-graphics.json │ │ ├── settings-input.json │ │ ├── settings-maintenance.json │ │ ├── settings-plugins.json │ │ ├── settings-ui.json │ │ ├── song-select.json │ │ └── toolbar.json │ ├── es-ES │ │ ├── mainmenu.json │ │ ├── mods.json │ │ └── modselect.json │ ├── fr │ │ ├── mainmenu.json │ │ ├── mods.json │ │ └── modselect.json │ ├── ja │ │ ├── general.json │ │ ├── mainmenu.json │ │ ├── mods.json │ │ ├── modselect.json │ │ ├── settings-appearance.json │ │ ├── settings-audio.json │ │ ├── settings-debug.json │ │ ├── settings-gameplay.json │ │ ├── settings-general.json │ │ ├── settings-graphics.json │ │ ├── settings-input.json │ │ ├── settings-maintenance.json │ │ ├── settings-plugins.json │ │ ├── settings-ui.json │ │ └── song-select.json │ ├── ru │ │ ├── mainmenu.json │ │ ├── mods.json │ │ ├── modselect.json │ │ ├── settings-appearance.json │ │ ├── settings-audio.json │ │ ├── settings-general.json │ │ ├── settings-graphics.json │ │ └── settings-ui.json │ └── vi │ │ ├── general.json │ │ ├── mainmenu.json │ │ ├── mods.json │ │ ├── modselect.json │ │ ├── settings-appearance.json │ │ ├── settings-audio.json │ │ ├── settings-debug.json │ │ ├── settings-gameplay.json │ │ ├── settings-general.json │ │ ├── settings-graphics.json │ │ ├── settings-input.json │ │ ├── settings-maintenance.json │ │ ├── settings-plugins.json │ │ ├── settings-ui.json │ │ └── song-select.json ├── Samples │ ├── Achievement │ │ ├── 1.mp3 │ │ ├── 2.mp3 │ │ └── 3.mp3 │ ├── Gameplay │ │ ├── all-flawless.wav │ │ ├── clap.wav │ │ ├── combobreak.mp3 │ │ ├── fail-no-fail.wav │ │ ├── fail.wav │ │ ├── full-combo.wav │ │ ├── hitsound.mp3 │ │ ├── kick.wav │ │ ├── restart.mp3 │ │ ├── snare.wav │ │ ├── tick-big.wav │ │ └── tick-small.wav │ ├── Intro │ │ ├── exit.mp3 │ │ └── startup.mp3 │ ├── Multiplayer │ │ ├── access-denied.wav │ │ ├── countdown-tick-1.wav │ │ ├── countdown-tick-2.wav │ │ ├── countdown-warn-final.wav │ │ ├── countdown-warn.wav │ │ ├── host-changed.wav │ │ ├── join.wav │ │ ├── kick.wav │ │ ├── leave.wav │ │ ├── ready.wav │ │ └── unready.wav │ └── UI │ │ ├── Keyboard │ │ ├── confirm.wav │ │ ├── delete.wav │ │ ├── error.wav │ │ ├── select-all.wav │ │ ├── select-char.wav │ │ ├── select-word.wav │ │ ├── tap-caps.wav │ │ └── tap.wav │ │ ├── Notifications │ │ ├── error.wav │ │ ├── finish.wav │ │ ├── in.wav │ │ └── out.wav │ │ ├── Overlay │ │ ├── close.wav │ │ └── open.wav │ │ ├── Select │ │ ├── mods-close.wav │ │ ├── mods-deselect.wav │ │ ├── mods-open.wav │ │ ├── mods-select.wav │ │ ├── random.wav │ │ └── rewind.wav │ │ ├── Settings │ │ ├── change-tab.wav │ │ ├── close.wav │ │ └── open.wav │ │ ├── accept.wav │ │ ├── back.wav │ │ ├── click-disabled.wav │ │ ├── click.wav │ │ ├── dropdown-close.wav │ │ ├── dropdown-open.wav │ │ ├── hover.wav │ │ ├── metronome-end.wav │ │ ├── metronome.wav │ │ ├── panel-close-danger.wav │ │ ├── panel-close.wav │ │ ├── panel-open-danger.wav │ │ ├── panel-open.wav │ │ ├── scroll.wav │ │ ├── slider-tick.wav │ │ ├── toggle-off.wav │ │ └── toggle-on.wav ├── Shaders │ ├── chroma.jpg │ ├── sh_Bloom.fs │ ├── sh_ChromaticAberration.fs │ ├── sh_FishEye.fs │ ├── sh_Glitch.fs │ ├── sh_Greyscale.fs │ ├── sh_HueShift.fs │ ├── sh_Invert.fs │ ├── sh_Mosaic.fs │ ├── sh_Noise.fs │ ├── sh_Reflections.fs │ ├── sh_Retro.fs │ ├── sh_SplitScreen.fs │ └── sh_Vignette.fs ├── Textures │ ├── Backgrounds │ │ ├── default.png │ │ ├── panel_base.png │ │ └── panel_lines.png │ ├── ButtonIcons │ │ └── Xbox │ │ │ ├── A.png │ │ │ ├── B.png │ │ │ ├── Dpad.png │ │ │ ├── DpadDown.png │ │ │ ├── DpadLeft.png │ │ │ ├── DpadRight.png │ │ │ ├── DpadUp.png │ │ │ ├── LB.png │ │ │ ├── LT.png │ │ │ ├── LeftStick.png │ │ │ ├── LeftStickClick.png │ │ │ ├── Menu.png │ │ │ ├── RB.png │ │ │ ├── RT.png │ │ │ ├── RightStick.png │ │ │ ├── RightStickClick.png │ │ │ ├── Share.png │ │ │ ├── View.png │ │ │ ├── X.png │ │ │ └── Y.png │ ├── Covers │ │ └── default.png │ ├── Cursor │ │ ├── border-click.png │ │ ├── border.png │ │ ├── fill-click.png │ │ └── fill.png │ ├── Flags │ │ ├── AC.png │ │ ├── AD.png │ │ ├── AE.png │ │ ├── AF.png │ │ ├── AG.png │ │ ├── AI.png │ │ ├── AL.png │ │ ├── AM.png │ │ ├── AO.png │ │ ├── AQ.png │ │ ├── AR.png │ │ ├── AS.png │ │ ├── AT.png │ │ ├── AU.png │ │ ├── AW.png │ │ ├── AX.png │ │ ├── AZ.png │ │ ├── BA.png │ │ ├── BB.png │ │ ├── BD.png │ │ ├── BE.png │ │ ├── BF.png │ │ ├── BG.png │ │ ├── BH.png │ │ ├── BI.png │ │ ├── BJ.png │ │ ├── BL.png │ │ ├── BM.png │ │ ├── BN.png │ │ ├── BO.png │ │ ├── BQ.png │ │ ├── BR.png │ │ ├── BS.png │ │ ├── BT.png │ │ ├── BV.png │ │ ├── BW.png │ │ ├── BY.png │ │ ├── BZ.png │ │ ├── CA.png │ │ ├── CC.png │ │ ├── CD.png │ │ ├── CF.png │ │ ├── CG.png │ │ ├── CH.png │ │ ├── CI.png │ │ ├── CK.png │ │ ├── CL.png │ │ ├── CM.png │ │ ├── CN.png │ │ ├── CO.png │ │ ├── CP.png │ │ ├── CR.png │ │ ├── CU.png │ │ ├── CV.png │ │ ├── CW.png │ │ ├── CX.png │ │ ├── CY.png │ │ ├── CZ.png │ │ ├── DE.png │ │ ├── DG.png │ │ ├── DJ.png │ │ ├── DK.png │ │ ├── DM.png │ │ ├── DO.png │ │ ├── DZ.png │ │ ├── EA.png │ │ ├── EC.png │ │ ├── EE.png │ │ ├── EG.png │ │ ├── EH.png │ │ ├── ER.png │ │ ├── ES.png │ │ ├── ET.png │ │ ├── EU.png │ │ ├── FI.png │ │ ├── FJ.png │ │ ├── FK.png │ │ ├── FM.png │ │ ├── FO.png │ │ ├── FR.png │ │ ├── GA.png │ │ ├── GB.png │ │ ├── GD.png │ │ ├── GE.png │ │ ├── GF.png │ │ ├── GG.png │ │ ├── GH.png │ │ ├── GI.png │ │ ├── GL.png │ │ ├── GM.png │ │ ├── GN.png │ │ ├── GP.png │ │ ├── GQ.png │ │ ├── GR.png │ │ ├── GS.png │ │ ├── GT.png │ │ ├── GU.png │ │ ├── GW.png │ │ ├── GY.png │ │ ├── HK.png │ │ ├── HM.png │ │ ├── HN.png │ │ ├── HR.png │ │ ├── HT.png │ │ ├── HU.png │ │ ├── IC.png │ │ ├── ID.png │ │ ├── IE.png │ │ ├── IL.png │ │ ├── IM.png │ │ ├── IN.png │ │ ├── IO.png │ │ ├── IQ.png │ │ ├── IR.png │ │ ├── IS.png │ │ ├── IT.png │ │ ├── JE.png │ │ ├── JM.png │ │ ├── JO.png │ │ ├── JP.png │ │ ├── KE.png │ │ ├── KG.png │ │ ├── KH.png │ │ ├── KI.png │ │ ├── KM.png │ │ ├── KN.png │ │ ├── KP.png │ │ ├── KR.png │ │ ├── KW.png │ │ ├── KY.png │ │ ├── KZ.png │ │ ├── LA.png │ │ ├── LB.png │ │ ├── LC.png │ │ ├── LI.png │ │ ├── LK.png │ │ ├── LR.png │ │ ├── LS.png │ │ ├── LT.png │ │ ├── LU.png │ │ ├── LV.png │ │ ├── LY.png │ │ ├── MA.png │ │ ├── MC.png │ │ ├── MD.png │ │ ├── ME.png │ │ ├── MF.png │ │ ├── MG.png │ │ ├── MH.png │ │ ├── MK.png │ │ ├── ML.png │ │ ├── MM.png │ │ ├── MN.png │ │ ├── MO.png │ │ ├── MP.png │ │ ├── MQ.png │ │ ├── MR.png │ │ ├── MS.png │ │ ├── MT.png │ │ ├── MU.png │ │ ├── MV.png │ │ ├── MW.png │ │ ├── MX.png │ │ ├── MY.png │ │ ├── MZ.png │ │ ├── NA.png │ │ ├── NC.png │ │ ├── NE.png │ │ ├── NF.png │ │ ├── NG.png │ │ ├── NI.png │ │ ├── NL.png │ │ ├── NO.png │ │ ├── NP.png │ │ ├── NR.png │ │ ├── NU.png │ │ ├── NZ.png │ │ ├── OM.png │ │ ├── PA.png │ │ ├── PE.png │ │ ├── PF.png │ │ ├── PG.png │ │ ├── PH.png │ │ ├── PK.png │ │ ├── PL.png │ │ ├── PM.png │ │ ├── PN.png │ │ ├── PR.png │ │ ├── PS.png │ │ ├── PT.png │ │ ├── PW.png │ │ ├── PY.png │ │ ├── QA.png │ │ ├── RA.png │ │ ├── RO.png │ │ ├── RS.png │ │ ├── RU.png │ │ ├── RW.png │ │ ├── SA.png │ │ ├── SB.png │ │ ├── SC.png │ │ ├── SD.png │ │ ├── SE.png │ │ ├── SG.png │ │ ├── SH.png │ │ ├── SI.png │ │ ├── SJ.png │ │ ├── SK.png │ │ ├── SL.png │ │ ├── SM.png │ │ ├── SN.png │ │ ├── SO.png │ │ ├── SR.png │ │ ├── SS.png │ │ ├── ST.png │ │ ├── SV.png │ │ ├── SX.png │ │ ├── SY.png │ │ ├── SZ.png │ │ ├── TA.png │ │ ├── TC.png │ │ ├── TD.png │ │ ├── TF.png │ │ ├── TG.png │ │ ├── TH.png │ │ ├── TJ.png │ │ ├── TK.png │ │ ├── TL.png │ │ ├── TM.png │ │ ├── TN.png │ │ ├── TO.png │ │ ├── TR.png │ │ ├── TT.png │ │ ├── TV.png │ │ ├── TW.png │ │ ├── TZ.png │ │ ├── UA.png │ │ ├── UG.png │ │ ├── UM.png │ │ ├── UN.png │ │ ├── US.png │ │ ├── UY.png │ │ ├── UZ.png │ │ ├── VA.png │ │ ├── VC.png │ │ ├── VE.png │ │ ├── VG.png │ │ ├── VI.png │ │ ├── VN.png │ │ ├── VU.png │ │ ├── WF.png │ │ ├── WS.png │ │ ├── XK.png │ │ ├── YE.png │ │ ├── YT.png │ │ ├── ZA.png │ │ ├── ZM.png │ │ └── ZW.png │ ├── Icons │ │ ├── Flash.png │ │ ├── LaneSwitch.png │ │ ├── PlayfieldMove.png │ │ ├── PlayfieldRotate.png │ │ ├── PlayfieldScale.png │ │ ├── Pulse.png │ │ ├── Shader.png │ │ └── Shake.png │ ├── Logos │ │ ├── logo-text-shadow.png │ │ └── logo-text.png │ ├── Multiplayer │ │ ├── button-lobby.png │ │ └── button-ranked.png │ ├── Online │ │ ├── default-avatar.png │ │ └── default-banner.png │ ├── QR.png │ ├── Results │ │ ├── circle.png │ │ ├── inner-circle.png │ │ ├── outer-circle.png │ │ ├── rank-a.png │ │ ├── rank-aa.png │ │ ├── rank-b.png │ │ ├── rank-c.png │ │ ├── rank-d.png │ │ ├── rank-s.png │ │ ├── rank-ss.png │ │ └── rank-x.png │ ├── Skins │ │ ├── circle.png │ │ ├── default.png │ │ └── missing.png │ └── menu-edit.png ├── Tracks │ ├── Gameplay │ │ └── DeathLoop.mp3 │ └── Menu │ │ ├── Christmashouse.ogg │ │ ├── Multiplayer │ │ ├── base.mp3 │ │ ├── lobby-list.mp3 │ │ ├── lobby-prepare.mp3 │ │ ├── lose.mp3 │ │ ├── ranked-main.mp3 │ │ ├── ranked-prepare.mp3 │ │ └── win.mp3 │ │ ├── Offset.mp3 │ │ ├── Roundhouse.ogg │ │ └── Spoophouse.ogg └── fluXis.Resources.csproj ├── fluXis.Tests ├── Courses │ └── TestCourseScreen.cs ├── Edit │ └── TestEditor.cs ├── FluXisTestBrowser.cs ├── FluXisTestScene.cs ├── Gameplay │ ├── TestFullComboOverlay.cs │ ├── TestGameplay.cs │ └── TestReplay.cs ├── Graphics │ ├── TestContextMenu.cs │ ├── TestDrawableCountry.cs │ ├── TestDrawableScoreRanks.cs │ ├── TestFileSelect.cs │ ├── TestGlobalBackground.cs │ ├── TestGradientText.cs │ ├── TestLoadingIcon.cs │ ├── TestMapCard.cs │ ├── TestShaderStackContainer.cs │ └── TestToggleSwitch.cs ├── Intro │ └── TestIntroAnimation.cs ├── Multiplayer │ ├── TestMultiResults.cs │ ├── TestMultiSelectScreen.cs │ └── TestMultiplayer.cs ├── Online │ └── TestDrawableUserCard.cs ├── Overlay │ ├── TestAchievementOverlay.cs │ ├── TestBrowseOverlay.cs │ ├── TestClubOverlay.cs │ ├── TestLoginOverlay.cs │ ├── TestMapSetOverlay.cs │ ├── TestNotificationOverlay.cs │ ├── TestTaskNotificationOverlay.cs │ ├── TestToolbar.cs │ ├── TestUserProfileFollowers.cs │ ├── TestUserProfileOverlay.cs │ └── TestVolumeOverlay.cs ├── Panels │ └── TestPanels.cs ├── Program.cs ├── Screens │ ├── TestLayoutEditor.cs │ ├── TestOffsetSetup.cs │ ├── TestResults.cs │ └── TestSkinEditor.cs ├── Select │ ├── TestMapEntry.cs │ ├── TestMapInfo.cs │ ├── TestMapList.cs │ ├── TestModSelect.cs │ └── TestScoreEntry.cs ├── Settings │ └── TestSettingsMenu.cs ├── Storyboards │ └── TestStoryboard.cs ├── TestAPIClient.cs └── fluXis.Tests.csproj ├── fluXis.sln ├── fluXis.sln.DotSettings ├── fluXis ├── Audio │ ├── AudioFilter.cs │ ├── GlobalClock.cs │ ├── IAmplitudeProvider.cs │ ├── IBeatSyncProvider.cs │ ├── KeyboardSamples.cs │ ├── Preview │ │ └── PreviewManager.cs │ ├── Transforms │ │ ├── RateTransform.cs │ │ ├── TimeTransform.cs │ │ ├── TransformableClock.cs │ │ └── TransformableClockExtensions.cs │ └── UISamples.cs ├── Configuration │ ├── Experiments │ │ └── ExperimentConfigManager.cs │ ├── FluXisConfig.cs │ ├── GameplayLeaderboardMode.cs │ ├── HudVisibility.cs │ ├── LoopMode.cs │ └── ScrollDirection.cs ├── Database │ ├── FluXisRealm.cs │ ├── ImporterInfo.cs │ ├── Input │ │ └── RealmKeybind.cs │ ├── MapFiles.cs │ ├── Maps │ │ ├── RealmMap.cs │ │ ├── RealmMapFilters.cs │ │ ├── RealmMapMetadata.cs │ │ ├── RealmMapSet.cs │ │ └── RealmMapUserSettings.cs │ ├── RealmObjectUtils.cs │ └── Score │ │ └── RealmScore.cs ├── FluXisGame.cs ├── FluXisGameBase-DragDrop.cs ├── FluXisGameBase.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Graphics │ ├── Background │ │ ├── BackgroundTextureStore.cs │ │ ├── BackgroundVideo.cs │ │ ├── BlurableBackground.cs │ │ ├── Cropped │ │ │ ├── CroppedBackgroundLoader.cs │ │ │ └── CroppedBackgroundStore.cs │ │ └── GlobalBackground.cs │ ├── Containers │ │ ├── AspectRatioContainer.cs │ │ ├── ExpandingContainer.cs │ │ ├── FluXisPopover.cs │ │ ├── FluXisScrollContainer.cs │ │ ├── FullInputBlockingContainer.cs │ │ ├── HoverClickContainer.cs │ │ ├── LoadWrapper.cs │ │ ├── Markdown │ │ │ ├── FluXisMarkdown.cs │ │ │ ├── FluXisMarkdownCodeBlock.cs │ │ │ ├── FluXisMarkdownLink.cs │ │ │ ├── FluXisMarkdownList.cs │ │ │ ├── FluXisMarkdownTable.cs │ │ │ └── FluXisMarkdownTextFlow.cs │ │ ├── ParallaxContainer.cs │ │ └── SelectionCycleContainer.cs │ ├── Drawables │ │ ├── DrawableScoreRank.cs │ │ └── TicTac.cs │ ├── FluXisStyles.cs │ ├── Gamepad │ │ ├── GamepadIcon.cs │ │ ├── GamepadTooltip.cs │ │ └── GamepadTooltipBar.cs │ ├── HttpOnlineStore.cs │ ├── IHasLoadedValue.cs │ ├── OnlineTextureStore.cs │ ├── Shaders │ │ ├── Bloom │ │ │ ├── BloomContainer.cs │ │ │ ├── BloomDrawNode.cs │ │ │ └── BufferedBloomContainer.cs │ │ ├── Chromatic │ │ │ ├── ChromaticContainer.cs │ │ │ └── ChromaticDrawNote.cs │ │ ├── FishEye │ │ │ ├── FIshEyeDrawNode.cs │ │ │ └── FishEyeContainer.cs │ │ ├── Glitch │ │ │ ├── GlitchContainer.cs │ │ │ └── GlitchDrawNode.cs │ │ ├── Greyscale │ │ │ ├── GreyscaleContainer.cs │ │ │ └── GreyscaleDrawNode.cs │ │ ├── HueShift │ │ │ ├── HueShiftContainer.cs │ │ │ └── HueShiftDrawNode.cs │ │ ├── IHasStrength.cs │ │ ├── Invert │ │ │ ├── InvertContainer.cs │ │ │ └── InvertDrawNode.cs │ │ ├── Mosaic │ │ │ ├── MosaicContainer.cs │ │ │ └── MosaicDrawNode.cs │ │ ├── Noise │ │ │ ├── NoiseContainer.cs │ │ │ └── NoiseDrawNode.cs │ │ ├── Reflections │ │ │ ├── ReflectionsContainer.cs │ │ │ └── ReflectionsDrawNode.cs │ │ ├── Retro │ │ │ ├── RetroContainer.cs │ │ │ └── RetroDrawNode.cs │ │ ├── ShaderContainer.cs │ │ ├── ShaderDrawNode.cs │ │ ├── ShaderStackContainer.cs │ │ ├── ShaderTransformHandler.cs │ │ ├── SplitScreen │ │ │ ├── SplitScreenContainer.cs │ │ │ └── SplitScreenDrawNode.cs │ │ └── Vignette │ │ │ ├── VignetteContainer.cs │ │ │ └── VignetteDrawNode.cs │ ├── Sprites │ │ ├── Animated │ │ │ └── AnimatedSpriteStore.cs │ │ ├── FileSystemSprite.cs │ │ ├── Icons │ │ │ ├── ClickableSpriteIcon.cs │ │ │ ├── FluXisIcon.cs │ │ │ ├── FluXisSpriteIcon.cs │ │ │ └── FontAwesome6.cs │ │ ├── LoadingIcon.cs │ │ ├── Outline │ │ │ ├── OutlinedCircle.cs │ │ │ └── OutlinedSquare.cs │ │ ├── SpriteStack.cs │ │ └── Text │ │ │ ├── ClickableFluXisSpriteText.cs │ │ │ ├── FluXisSpriteText.cs │ │ │ ├── FluXisTooltipText.cs │ │ │ ├── ForcedHeightText.cs │ │ │ ├── GradientText.cs │ │ │ └── TruncatingText.cs │ └── UserInterface │ │ ├── Buttons │ │ ├── CornerButton.cs │ │ ├── FluXisButton.cs │ │ ├── IconButton.cs │ │ └── Presets │ │ │ ├── CancelButtonData.cs │ │ │ ├── DangerButtonData.cs │ │ │ ├── PrimaryButtonData.cs │ │ │ └── SecondaryButtonData.cs │ │ ├── Color │ │ ├── FluXisColorPicker.cs │ │ ├── FluXisColors.cs │ │ ├── FluXisHexColorPicker.cs │ │ └── FluXisHsvColourPicker.cs │ │ ├── Context │ │ ├── FluXisContextMenu.cs │ │ └── FluXisContextMenuContainer.cs │ │ ├── Files │ │ ├── DriveEntry.cs │ │ ├── Entry │ │ │ ├── DirectoryEntry.cs │ │ │ ├── FileEntry.cs │ │ │ └── GenericEntry.cs │ │ ├── FileSelect.cs │ │ └── Sidebar │ │ │ ├── FileSelectSidebar.cs │ │ │ └── SidebarEntry.cs │ │ ├── FluXisSlider.cs │ │ ├── FluXisToggleSwitch.cs │ │ ├── Footer │ │ ├── Footer.cs │ │ └── FooterButton.cs │ │ ├── Interaction │ │ ├── FlashLayer.cs │ │ └── HoverLayer.cs │ │ ├── Menus │ │ ├── DrawableFluXisMenuItem.cs │ │ ├── DrawableFluXisMenuSpacer.cs │ │ ├── FluXisDropdown.cs │ │ ├── FluXisMenu.cs │ │ ├── FluXisMenuItem.cs │ │ ├── FluXisMenuSpacer.cs │ │ └── MenuItemType.cs │ │ ├── Panel │ │ ├── ICloseable.cs │ │ ├── Panel.cs │ │ ├── PanelBackground.cs │ │ ├── PanelContainer.cs │ │ ├── Presets │ │ │ ├── ConfirmDeletionPanel.cs │ │ │ ├── ConfirmExitPanel.cs │ │ │ ├── ExceptionPanel.cs │ │ │ ├── ExternalLinkPanel.cs │ │ │ └── UnsavedChangesPanel.cs │ │ └── Types │ │ │ ├── ButtonPanel.cs │ │ │ ├── LoadingPanel.cs │ │ │ └── SingleButtonPanel.cs │ │ ├── RoundedChip.cs │ │ ├── SectionedGradient.cs │ │ ├── Tabs │ │ ├── TabContainer.cs │ │ └── TabControl.cs │ │ └── Text │ │ ├── FluXisTextBox.cs │ │ └── FluXisTextFlow.cs ├── IO │ └── ReplayStorage.cs ├── IPC │ └── IPCImportChannel.cs ├── Import │ ├── FluXisImport.cs │ ├── ImportManager.cs │ └── MapImporter.cs ├── Input │ ├── Bindings │ │ └── RealmKeyBindingContainer.cs │ ├── CheatCodeHandler.cs │ ├── GamepadHandler.cs │ ├── GameplayKeybindContainer.cs │ ├── GlobalKeybindContainer.cs │ └── KeybindStore.cs ├── Integration │ ├── DiscordRichPresence.cs │ ├── ISteamManager.cs │ ├── IWorkshopItem.cs │ └── LightController.cs ├── Localization │ ├── Categories │ │ ├── DashboardStrings.cs │ │ ├── GeneralStrings.cs │ │ ├── MainMenuStrings.cs │ │ ├── ModSelectStrings.cs │ │ ├── ModStrings.cs │ │ ├── Settings │ │ │ ├── SettingsAppearanceStrings.cs │ │ │ ├── SettingsAudioStrings.cs │ │ │ ├── SettingsDebugStrings.cs │ │ │ ├── SettingsGameplayStrings.cs │ │ │ ├── SettingsGeneralStrings.cs │ │ │ ├── SettingsGraphicsStrings.cs │ │ │ ├── SettingsInputStrings.cs │ │ │ ├── SettingsMaintenanceStrings.cs │ │ │ ├── SettingsPluginsStrings.cs │ │ │ └── SettingsUIStrings.cs │ │ ├── SettingsStrings.cs │ │ ├── SongSelectStrings.cs │ │ └── ToolbarStrings.cs │ ├── Language.cs │ ├── LocalizationCategory.cs │ ├── LocalizationStrings.cs │ └── Stores │ │ ├── DebugLocaleStore.cs │ │ └── ResourceLocaleStore.cs ├── Map │ ├── Builtin │ │ ├── Christmashouse │ │ │ ├── ChristmashouseMap.cs │ │ │ └── ChristmashouseMapSet.cs │ │ ├── Roundhouse │ │ │ ├── RoundhouseMap.cs │ │ │ └── RoundhouseMapSet.cs │ │ └── Spoophouse │ │ │ ├── SpoophouseMap.cs │ │ │ └── SpoophouseMapSet.cs │ ├── CreateNewMapParameters.cs │ ├── Drawables │ │ ├── Card │ │ │ ├── MapCard-Tooltip.cs │ │ │ └── MapCard.cs │ │ ├── DifficultyChip.cs │ │ ├── KeyModeIcon.cs │ │ ├── KeymodeChip.cs │ │ ├── MapBackground.cs │ │ └── MapCover.cs │ ├── FramedMapClock.cs │ ├── MapColors.cs │ ├── MapEvents.cs │ ├── MapInfo.cs │ ├── MapMetadata.cs │ ├── MapSetResources.cs │ ├── MapStore.cs │ └── Structures │ │ ├── Bases │ │ ├── IApplicableToHitManager.cs │ │ ├── IApplicableToPlayfield.cs │ │ ├── IHasDuration.cs │ │ ├── IHasEasing.cs │ │ ├── IHasLaneMask.cs │ │ ├── IMapEvent.cs │ │ └── ITimedObject.cs │ │ ├── Events │ │ ├── BeatPulseEvent.cs │ │ ├── FlashEvent.cs │ │ ├── HitObjectEaseEvent.cs │ │ ├── LaneSwitchEvent.cs │ │ ├── LayerFadeEvent.cs │ │ ├── NoteEvent.cs │ │ ├── PlayfieldMoveEvent.cs │ │ ├── PlayfieldRotateEvent.cs │ │ ├── PlayfieldScaleEvent.cs │ │ ├── PulseEvent.cs │ │ ├── ScriptEvent.cs │ │ ├── ScrollMultiplierEvent.cs │ │ ├── ShaderEvent.cs │ │ ├── ShakeEvent.cs │ │ └── TimeOffsetEvent.cs │ │ ├── HitObject.cs │ │ ├── HitSoundFade.cs │ │ ├── ScrollVelocity.cs │ │ └── TimingPoint.cs ├── Mods │ ├── AutoPlayMod.cs │ ├── Drawables │ │ ├── ModIcon.cs │ │ └── ModList.cs │ ├── EasyMod.cs │ ├── FlawlessMod.cs │ ├── FragileMod.cs │ ├── HardMod.cs │ ├── IApplicableToEvents.cs │ ├── IApplicableToHealthProcessor.cs │ ├── IApplicableToHitObject.cs │ ├── IApplicableToMap.cs │ ├── IMod.cs │ ├── MirrorMod.cs │ ├── NoEventMod.cs │ ├── NoFailMod.cs │ ├── NoLnMod.cs │ ├── NoSvMod.cs │ ├── PausedMod.cs │ └── RateMod.cs ├── Online │ ├── API │ │ ├── APIException.cs │ │ ├── APIRequest.cs │ │ ├── APIResponse.cs │ │ ├── APIWebRequest.cs │ │ ├── Models │ │ │ ├── Chat │ │ │ │ ├── APIChatChannel.cs │ │ │ │ └── APIChatMessage.cs │ │ │ ├── Clubs │ │ │ │ ├── APIClub.cs │ │ │ │ ├── APIClubInvite.cs │ │ │ │ ├── APIClubStatistics.cs │ │ │ │ └── ClubJoinType.cs │ │ │ ├── Collections │ │ │ │ └── APICollection.cs │ │ │ ├── Featured │ │ │ │ ├── APIFeaturedAlbum.cs │ │ │ │ ├── APIFeaturedArtist.cs │ │ │ │ └── APIFeaturedTrack.cs │ │ │ ├── Groups │ │ │ │ └── APIGroup.cs │ │ │ ├── Maps │ │ │ │ ├── APIMap.cs │ │ │ │ ├── APIMapLookup.cs │ │ │ │ ├── APIMapSet.cs │ │ │ │ ├── APIMapVotes.cs │ │ │ │ ├── DualMode.cs │ │ │ │ ├── MapEffectType.cs │ │ │ │ └── MapSetFlag.cs │ │ │ ├── Multi │ │ │ │ ├── MultiplayerParticipant.cs │ │ │ │ ├── MultiplayerPrivacy.cs │ │ │ │ ├── MultiplayerRoom.cs │ │ │ │ ├── MultiplayerRoomUpdate.cs │ │ │ │ └── MultiplayerUserState.cs │ │ │ ├── Notifications │ │ │ │ ├── APINotification.cs │ │ │ │ ├── APINotificationList.cs │ │ │ │ ├── Data │ │ │ │ │ └── ClubInviteNotification.cs │ │ │ │ └── NotificationType.cs │ │ │ ├── Other │ │ │ │ ├── APIGradientColor.cs │ │ │ │ ├── APIInvite.cs │ │ │ │ ├── Achievement.cs │ │ │ │ ├── MenuUpdate.cs │ │ │ │ └── ServerMessage.cs │ │ │ ├── Scores │ │ │ │ ├── APIClubScore.cs │ │ │ │ └── APIScore.cs │ │ │ ├── Social │ │ │ │ └── APIFriends.cs │ │ │ └── Users │ │ │ │ ├── APIUser.cs │ │ │ │ ├── APIUserMaps.cs │ │ │ │ ├── APIUserScores.cs │ │ │ │ ├── APIUserSocials.cs │ │ │ │ ├── APIUserStatistics.cs │ │ │ │ └── Equipment │ │ │ │ └── APINamePaint.cs │ │ ├── Payloads │ │ │ ├── Auth │ │ │ │ ├── LoginPayload.cs │ │ │ │ ├── Multifactor │ │ │ │ │ ├── TOTPEnablePayload.cs │ │ │ │ │ └── TOTPVerifyPayload.cs │ │ │ │ ├── PasswordResetPayload.cs │ │ │ │ └── RegisterPayload.cs │ │ │ ├── Chat │ │ │ │ └── ChatMessagePayload.cs │ │ │ ├── Clubs │ │ │ │ ├── CreateClubPayload.cs │ │ │ │ └── EditClubPayload.cs │ │ │ ├── Collections │ │ │ │ └── CollectionCreatePayload.cs │ │ │ ├── Invites │ │ │ │ └── CreateClubInvitePayload.cs │ │ │ ├── Maps │ │ │ │ └── MapVotePayload.cs │ │ │ ├── Scores │ │ │ │ └── ScoreSubmissionPayload.cs │ │ │ └── Users │ │ │ │ ├── UserConnectionCreatePayload.cs │ │ │ │ └── UserProfileUpdatePayload.cs │ │ ├── Requests │ │ │ ├── Auth │ │ │ │ ├── LoginRequest.cs │ │ │ │ ├── Multifactor │ │ │ │ │ └── TOTPVerifyRequest.cs │ │ │ │ └── RegisterRequest.cs │ │ │ ├── Chat │ │ │ │ ├── ChatChannelsRequest.cs │ │ │ │ ├── ChatJoinChannelRequest.cs │ │ │ │ ├── ChatJoinedChannelsRequest.cs │ │ │ │ ├── ChatLeaveChannelRequest.cs │ │ │ │ ├── ChatMessageDeleteRequest.cs │ │ │ │ ├── ChatMessageRequest.cs │ │ │ │ └── ChatMessagesRequest.cs │ │ │ ├── Clubs │ │ │ │ └── ClubRequest.cs │ │ │ ├── Invites │ │ │ │ ├── AcceptInviteRequest.cs │ │ │ │ └── GetInviteRequest.cs │ │ │ ├── Leaderboards │ │ │ │ └── OverallRatingLeaderboardRequest.cs │ │ │ ├── MapSets │ │ │ │ ├── MapSetBundledRequest.cs │ │ │ │ ├── MapSetDeleteRequest.cs │ │ │ │ ├── MapSetDownloadRequest.cs │ │ │ │ ├── MapSetRequest.cs │ │ │ │ ├── MapSetSubmitQueueRequest.cs │ │ │ │ ├── MapSetUploadRequest.cs │ │ │ │ ├── MapSetsRequest.cs │ │ │ │ └── Votes │ │ │ │ │ ├── MapVotesRequest.cs │ │ │ │ │ └── MapVotesUpdateRequest.cs │ │ │ ├── Maps │ │ │ │ ├── MapLeaderboardRequest.cs │ │ │ │ └── MapLookupRequest.cs │ │ │ ├── MenuUpdatesRequest.cs │ │ │ ├── Multiplayer │ │ │ │ └── MultiLobbiesRequest.cs │ │ │ ├── NotificationsRequest.cs │ │ │ ├── Scores │ │ │ │ └── ScoreSubmitRequest.cs │ │ │ ├── Social │ │ │ │ └── FriendsRequest.cs │ │ │ ├── Users │ │ │ │ ├── ChangeUsernameRequest.cs │ │ │ │ ├── OnlineUsersRequest.cs │ │ │ │ ├── UserConnectionCreateRequest.cs │ │ │ │ ├── UserFollowRequest.cs │ │ │ │ ├── UserFollowersRequest.cs │ │ │ │ ├── UserMapsRequest.cs │ │ │ │ ├── UserProfileUpdateRequest.cs │ │ │ │ ├── UserRequest.cs │ │ │ │ └── UserScoresRequest.cs │ │ │ └── Wiki │ │ │ │ └── WikiPageRequest.cs │ │ └── Responses │ │ │ ├── Auth │ │ │ ├── LoginResponse.cs │ │ │ ├── Multifactor │ │ │ │ ├── TOTPEnableResponse.cs │ │ │ │ └── TOTPVerifyResponse.cs │ │ │ └── RegisterResponse.cs │ │ │ ├── Maps │ │ │ ├── MapLeaderboard.cs │ │ │ └── MapLeaderboardClubs.cs │ │ │ ├── Scores │ │ │ └── ScoreSubmissionStats.cs │ │ │ └── Users │ │ │ └── OnlineUsers.cs │ ├── APIEndpointConfig.cs │ ├── Activity │ │ ├── SteamActivityManager.cs │ │ └── UserActivity.cs │ ├── Chat │ │ ├── ChatChannel.cs │ │ └── ChatClient.cs │ ├── CountryCode.cs │ ├── Drawables │ │ ├── Clubs │ │ │ ├── ClubInvitePanel.cs │ │ │ └── ClubTag.cs │ │ ├── DrawableMultiplayerCard.cs │ │ ├── Images │ │ │ ├── DrawableAvatar.cs │ │ │ ├── DrawableBanner.cs │ │ │ ├── DrawableClubBanner.cs │ │ │ ├── DrawableClubIcon.cs │ │ │ ├── DrawableCountry.cs │ │ │ ├── DrawableOnlineBackground.cs │ │ │ └── DrawableOnlineCover.cs │ │ ├── OnlineErrorContainer.cs │ │ └── Users │ │ │ ├── DrawableGroupBadge.cs │ │ │ ├── DrawableUserCard.cs │ │ │ ├── OldUserTooltip.cs │ │ │ └── UserTooltip.cs │ ├── Exceptions │ │ ├── InvalidRoomPasswordException.cs │ │ ├── MultiMapException.cs │ │ └── RoomException.cs │ ├── Fluxel │ │ ├── FluxelClient.cs │ │ └── IAPIClient.cs │ ├── Multiplayer │ │ ├── IMultiplayerClient.cs │ │ ├── IMultiplayerServer.cs │ │ ├── MultiplayerClient.cs │ │ └── OnlineMultiplayerClient.cs │ ├── Notifications │ │ ├── INotificationClient.cs │ │ └── INotificationServer.cs │ ├── Spectator │ │ ├── ISpectatorClient.cs │ │ ├── ISpectatorServer.cs │ │ ├── SpectatorFrameBundle.cs │ │ └── SpectatorState.cs │ └── UserCache.cs ├── Overlay │ ├── Achievements │ │ └── AchievementOverlay.cs │ ├── Auth │ │ ├── LoginOverlay.cs │ │ ├── MultifactorOverlay.cs │ │ ├── RegisterOverlay.cs │ │ ├── UI │ │ │ ├── AuthOverlayButton.cs │ │ │ └── AuthOverlayTextBox.cs │ │ └── UsernameChangePanel.cs │ ├── Browse │ │ ├── BrowseOverlay.cs │ │ └── BrowserSearchBar.cs │ ├── Chat │ │ ├── ChatChannelsPanel.cs │ │ ├── ChatOverlay.cs │ │ ├── DrawableChatMessage.cs │ │ └── UI │ │ │ └── ChatChannelButton.cs │ ├── Club │ │ ├── ClubOverlay.cs │ │ ├── Sidebar │ │ │ ├── ClubSidebarActivity.cs │ │ │ └── ClubSidebarStats.cs │ │ ├── Tabs │ │ │ ├── ClubMembersTab.cs │ │ │ ├── ClubScoresTab.cs │ │ │ └── Members │ │ │ │ └── ClubMemberEntry.cs │ │ └── UI │ │ │ └── ClubHeader.cs │ ├── Exit │ │ └── ExitAnimation.cs │ ├── FPS │ │ └── FpsOverlay.cs │ ├── IconEntranceOverlay.cs │ ├── MapSet │ │ ├── Buttons │ │ │ ├── MapSetButton.cs │ │ │ └── MapSetDownloadButton.cs │ │ ├── MapSetHeader.cs │ │ ├── MapSetOverlay.cs │ │ ├── Sidebar │ │ │ ├── MapSetSidebarMapper.cs │ │ │ ├── MapSetSidebarStats.cs │ │ │ └── MapSetSidebarVoting.cs │ │ ├── Tabs │ │ │ ├── MapSetCommentsTab.cs │ │ │ ├── MapSetInfoTab.cs │ │ │ └── MapSetScoreTab.cs │ │ └── UI │ │ │ └── Difficulties │ │ │ └── DifficultyChip.cs │ ├── Mouse │ │ ├── CustomTooltipContainer.cs │ │ ├── GlobalCursorOverlay.cs │ │ ├── GlobalTooltipContainer.cs │ │ ├── ICursorDrag.cs │ │ └── MenuCursor.cs │ ├── Music │ │ ├── MusicPlayer.cs │ │ ├── MusicPlayerButton.cs │ │ └── MusicVisualiser.cs │ ├── Network │ │ ├── Dashboard.cs │ │ ├── DashboardRefreshButton.cs │ │ ├── DashboardTab.cs │ │ ├── Sidebar │ │ │ ├── DashboardSidebar.cs │ │ │ └── DashboardSidebarButton.cs │ │ └── Tabs │ │ │ ├── Account │ │ │ ├── DashboardAccountButton.cs │ │ │ ├── DashboardAccountCategory.cs │ │ │ ├── DashboardAccountText.cs │ │ │ └── DashboardAccountTextbox.cs │ │ │ ├── Club │ │ │ └── DashboardClubHeader.cs │ │ │ ├── DashboardAccountTab.cs │ │ │ ├── DashboardClubTab.cs │ │ │ ├── DashboardFriendsTab.cs │ │ │ ├── DashboardNewsTab.cs │ │ │ ├── DashboardNotificationsTab.cs │ │ │ ├── DashboardOnlineTab.cs │ │ │ ├── DashboardWipTab.cs │ │ │ └── Shared │ │ │ └── DashboardItemList.cs │ ├── Notifications │ │ ├── Floating │ │ │ ├── FloatingNotification.cs │ │ │ ├── FloatingTextNotification.cs │ │ │ └── SmallFloatingTextNotification.cs │ │ ├── FloatingNotificationContainer.cs │ │ ├── INotificationData.cs │ │ ├── LoadingState.cs │ │ ├── NotificationManager.cs │ │ ├── Tasks │ │ │ ├── TaskNotification.cs │ │ │ ├── TaskNotificationContainer.cs │ │ │ └── TaskNotificationData.cs │ │ └── Types │ │ │ └── Image │ │ │ ├── FileSystemImageNotification.cs │ │ │ ├── FloatingImageNotification.cs │ │ │ ├── ImageNotificationData.cs │ │ │ └── OnlineImageNotification.cs │ ├── OverlayContainer.cs │ ├── Settings │ │ ├── Sections │ │ │ ├── Appearance │ │ │ │ ├── AppearanceLayoutSection.cs │ │ │ │ ├── AppearanceSkinSection.cs │ │ │ │ └── Skin │ │ │ │ │ └── SkinIcon.cs │ │ │ ├── AppearanceSection.cs │ │ │ ├── Audio │ │ │ │ ├── AudioDeviceSection.cs │ │ │ │ ├── AudioOffsetSection.cs │ │ │ │ ├── AudioPanningSection.cs │ │ │ │ └── AudioVolumeSection.cs │ │ │ ├── AudioSection.cs │ │ │ ├── DebugSection.cs │ │ │ ├── ExperimentsSection.cs │ │ │ ├── Gameplay │ │ │ │ ├── GameplayBackgroundSection.cs │ │ │ │ ├── GameplayEffectsSection.cs │ │ │ │ ├── GameplayGeneralSection.cs │ │ │ │ ├── GameplayHudSection.cs │ │ │ │ ├── GameplayMapSection.cs │ │ │ │ └── GameplayScrollSpeedSection.cs │ │ │ ├── GameplaySection.cs │ │ │ ├── General │ │ │ │ ├── GeneralFoldersSection.cs │ │ │ │ └── GeneralLanguageSection.cs │ │ │ ├── GeneralSection.cs │ │ │ ├── Graphics │ │ │ │ ├── GraphicsLayoutSection.cs │ │ │ │ └── GraphicsRenderingSection.cs │ │ │ ├── GraphicsSection.cs │ │ │ ├── Input │ │ │ │ ├── InputKeybindingsSection.cs │ │ │ │ └── InputMouseSection.cs │ │ │ ├── InputSection.cs │ │ │ ├── Maintenance │ │ │ │ ├── MaintenanceFilesSection.cs │ │ │ │ └── MaintenanceMapsSection.cs │ │ │ ├── MaintenanceSection.cs │ │ │ ├── Plugins │ │ │ │ ├── Import │ │ │ │ │ └── DrawableImportPlugin.cs │ │ │ │ └── PluginsImportSection.cs │ │ │ ├── PluginsSection.cs │ │ │ ├── UserInterface │ │ │ │ ├── UserInterfaceGeneralSection.cs │ │ │ │ ├── UserInterfaceMainMenuSection.cs │ │ │ │ └── UserInterfaceSongSelectSection.cs │ │ │ └── UserInterfaceSection.cs │ │ ├── SettingsMenu.cs │ │ ├── SettingsSection.cs │ │ ├── SettingsSubSection.cs │ │ ├── Sidebar │ │ │ ├── SettingsSidebar.cs │ │ │ ├── SettingsSidebarButton.cs │ │ │ └── SettingsSidebarSubButton.cs │ │ ├── Tabs │ │ │ ├── SettingsCategorySelector.cs │ │ │ └── SettingsCategoryTab.cs │ │ └── UI │ │ │ ├── Keybind │ │ │ ├── SettingsAbstractKeybind.cs │ │ │ ├── SettingsCallbackKeybind.cs │ │ │ └── SettingsRealmKeybind.cs │ │ │ ├── SettingsButton.cs │ │ │ ├── SettingsDivider.cs │ │ │ ├── SettingsDropdown.cs │ │ │ ├── SettingsItem.cs │ │ │ ├── SettingsSlider.cs │ │ │ ├── SettingsSubSectionTitle.cs │ │ │ ├── SettingsTextBox.cs │ │ │ └── SettingsToggle.cs │ ├── Toolbar │ │ ├── Buttons │ │ │ ├── ToolbarOverlayButton.cs │ │ │ └── ToolbarScreenButton.cs │ │ ├── Toolbar.cs │ │ ├── ToolbarButton.cs │ │ ├── ToolbarClock.cs │ │ ├── ToolbarProfile.cs │ │ └── ToolbarSeparator.cs │ ├── User │ │ ├── Header │ │ │ ├── HeaderButton.cs │ │ │ ├── HeaderEditButton.cs │ │ │ ├── HeaderFollowButton.cs │ │ │ ├── HeaderGroupChip.cs │ │ │ └── HeaderPlacementChip.cs │ │ ├── ProfileHeader.cs │ │ ├── Sections │ │ │ └── ProfileStats.cs │ │ ├── Sidebar │ │ │ ├── ProfileFollowerList.cs │ │ │ └── ProfileSidebarClub.cs │ │ ├── Tabs │ │ │ ├── Maps │ │ │ │ └── ProfileMapsSection.cs │ │ │ ├── ProfileMapsTab.cs │ │ │ ├── ProfileScoresTab.cs │ │ │ └── Scores │ │ │ │ ├── ProfileScore.cs │ │ │ │ └── ProfileScoresSection.cs │ │ └── UserProfileOverlay.cs │ ├── Volume │ │ ├── VolumeCategory.cs │ │ └── VolumeOverlay.cs │ └── Wiki │ │ └── WikiOverlay.cs ├── Plugins │ ├── Plugin.cs │ ├── PluginConfigManager.cs │ └── PluginManager.cs ├── Replays │ ├── AutoGenerator.cs │ ├── Replay.cs │ ├── ReplayFrame.cs │ └── ReplayRecorder.cs ├── Scoring │ ├── Enums │ │ ├── HealthMode.cs │ │ ├── Judgement.cs │ │ └── ScoreRank.cs │ ├── HitWindows.cs │ ├── Processing │ │ ├── Health │ │ │ ├── DrainHealthProcessor.cs │ │ │ ├── HealthProcessor.cs │ │ │ └── RequirementHeathProcessor.cs │ │ ├── JudgementDependant.cs │ │ ├── JudgementProcessor.cs │ │ └── ScoreProcessor.cs │ ├── ReleaseWindows.cs │ ├── ScoreInfo.cs │ ├── ScoreManager.cs │ └── Structs │ │ └── HitResult.cs ├── Screens │ ├── Course │ │ ├── CourseGameplayScreen.cs │ │ ├── CourseScreen.cs │ │ └── CourseScreenFooter.cs │ ├── Edit │ │ ├── Actions │ │ │ ├── ApplyOffsetAction.cs │ │ │ ├── EditorAction.cs │ │ │ ├── EditorActionStack.cs │ │ │ ├── Events │ │ │ │ ├── EventBulkCloneAction.cs │ │ │ │ ├── EventBulkRemoveAction.cs │ │ │ │ ├── EventPlaceAction.cs │ │ │ │ └── EventRemoveAction.cs │ │ │ └── Notes │ │ │ │ ├── Hitsound │ │ │ │ └── NoteHitsoundChangeAction.cs │ │ │ │ ├── NoteMoveAction.cs │ │ │ │ ├── NoteMultiPlaceAction.cs │ │ │ │ ├── NotePasteAction.cs │ │ │ │ ├── NotePlaceAction.cs │ │ │ │ ├── NoteRemoveAction.cs │ │ │ │ └── Shortcuts │ │ │ │ ├── NoteFlipAction.cs │ │ │ │ ├── NoteReSnapAction.cs │ │ │ │ └── NoteShuffleAction.cs │ │ ├── Blueprints │ │ │ ├── BlueprintContainer.cs │ │ │ └── Selection │ │ │ │ ├── SelectionBlueprint.cs │ │ │ │ ├── SelectionBlueprints.cs │ │ │ │ ├── SelectionBox.cs │ │ │ │ ├── SelectionHandler.cs │ │ │ │ └── SelectionOutline.cs │ │ ├── BottomBar │ │ │ ├── EditorBottomBar.cs │ │ │ ├── EditorPlayTestButton.cs │ │ │ ├── Snap │ │ │ │ └── SnapControlPopover.cs │ │ │ ├── SnapControl.cs │ │ │ ├── TimeInfo.cs │ │ │ ├── Timeline │ │ │ │ ├── EditorTimeline.cs │ │ │ │ ├── TimelineDensity.cs │ │ │ │ └── TimelineIndicator.cs │ │ │ └── VariableControl.cs │ │ ├── Editor.cs │ │ ├── EditorClipboardContent.cs │ │ ├── EditorClock.cs │ │ ├── EditorDifficultyCreationPanel.cs │ │ ├── EditorLoader.cs │ │ ├── EditorMap.cs │ │ ├── EditorSettings.cs │ │ ├── EditorSnapProvider.cs │ │ ├── EditorTab.cs │ │ ├── EditorUploadOverlay.cs │ │ ├── ITimePositionProvider.cs │ │ ├── Input │ │ │ ├── EditorKeybinding.cs │ │ │ ├── EditorKeybindingContainer.cs │ │ │ ├── EditorKeymap.cs │ │ │ ├── EditorKeymapOverlay.cs │ │ │ └── EditorScrollAction.cs │ │ ├── MenuBar │ │ │ ├── EditorMenuBar.cs │ │ │ └── EditorSubMenu.cs │ │ ├── Playtest │ │ │ ├── EditorAutoPlaytestScreen.cs │ │ │ └── EditorPlaytestScreen.cs │ │ ├── TabSwitcher │ │ │ ├── EditorTabSwitcher.cs │ │ │ └── EditorTabSwitcherButton.cs │ │ └── Tabs │ │ │ ├── Charting │ │ │ ├── Blueprints │ │ │ │ ├── BlueprintLongNoteBody.cs │ │ │ │ ├── BlueprintNotePiece.cs │ │ │ │ ├── ChartingBlueprintContainer.cs │ │ │ │ ├── ChartingSelectionHandler.cs │ │ │ │ ├── Placement │ │ │ │ │ ├── LaneSwitchPlacementBlueprint.cs │ │ │ │ │ ├── LongNotePlacementBlueprint.cs │ │ │ │ │ ├── NotePlacementBlueprint.cs │ │ │ │ │ ├── PlacementBlueprint.cs │ │ │ │ │ ├── SingleNotePlacementBlueprint.cs │ │ │ │ │ └── TickNotePlacementBlueprint.cs │ │ │ │ └── Selection │ │ │ │ │ ├── ChartingSelectionBlueprint.cs │ │ │ │ │ ├── DraggableSelectionPiece.cs │ │ │ │ │ ├── LongNoteSelectionBlueprint.cs │ │ │ │ │ ├── NoteSelectionBlueprint.cs │ │ │ │ │ └── SingleNoteSelectionBlueprint.cs │ │ │ ├── ChartingContainer.cs │ │ │ ├── Effect │ │ │ │ ├── EditorEffectContainer.cs │ │ │ │ └── EditorLaneSwitchEvent.cs │ │ │ ├── Playfield │ │ │ │ ├── EditorHitObject.cs │ │ │ │ ├── EditorHitObjectContainer.cs │ │ │ │ ├── EditorPlayfield.cs │ │ │ │ ├── Objects │ │ │ │ │ ├── EditorLongNote.cs │ │ │ │ │ ├── EditorSingleNote.cs │ │ │ │ │ └── EditorTickNote.cs │ │ │ │ └── Tags │ │ │ │ │ ├── EditorTag.cs │ │ │ │ │ ├── EditorTagContainer.cs │ │ │ │ │ ├── EffectTagContainer.cs │ │ │ │ │ ├── EffectTags │ │ │ │ │ └── NoteEventTag.cs │ │ │ │ │ ├── TimingTagContainer.cs │ │ │ │ │ └── TimingTags │ │ │ │ │ ├── PreviewPointTag.cs │ │ │ │ │ ├── ScrollVelocityTag.cs │ │ │ │ │ └── TimingPointTag.cs │ │ │ ├── Points │ │ │ │ ├── ChartingPointsList.cs │ │ │ │ ├── ChartingSidebar.cs │ │ │ │ └── Entries │ │ │ │ │ ├── LaneSwitchEntry.cs │ │ │ │ │ └── TimingPointEntry.cs │ │ │ ├── Toolbox │ │ │ │ ├── ToolboxHitsoundButton.cs │ │ │ │ └── ToolboxHitsoundCategory.cs │ │ │ └── Tools │ │ │ │ ├── ChartingTool.cs │ │ │ │ ├── Effects │ │ │ │ ├── EffectTool.cs │ │ │ │ └── LaneSwitchTool.cs │ │ │ │ ├── LongNoteTool.cs │ │ │ │ ├── SelectTool.cs │ │ │ │ ├── SingleNoteTool.cs │ │ │ │ └── TickNoteTool.cs │ │ │ ├── ChartingTab.cs │ │ │ ├── Design │ │ │ ├── DesignContainer.cs │ │ │ ├── DesignShaderHandler.cs │ │ │ ├── Effects │ │ │ │ └── EditorFlashLayer.cs │ │ │ ├── Points │ │ │ │ ├── DesignPointListDropdown.cs │ │ │ │ ├── DesignPointsList.cs │ │ │ │ ├── DesignSidebar.cs │ │ │ │ └── Entries │ │ │ │ │ ├── BeatPulseEntry.cs │ │ │ │ │ ├── FlashEntry.cs │ │ │ │ │ ├── HitObjectEaseEntry.cs │ │ │ │ │ ├── LayerFadeEntry.cs │ │ │ │ │ ├── NoteEntry.cs │ │ │ │ │ ├── PlayfieldMoveEntry.cs │ │ │ │ │ ├── PlayfieldRotateEntry.cs │ │ │ │ │ ├── PlayfieldScaleEntry.cs │ │ │ │ │ ├── PulseEntry.cs │ │ │ │ │ ├── ScriptEntry.cs │ │ │ │ │ ├── ScrollMultiplierEntry.cs │ │ │ │ │ ├── ScrollVelocityEntry.cs │ │ │ │ │ ├── ShaderEntry.cs │ │ │ │ │ ├── ShakeEntry.cs │ │ │ │ │ └── TimeOffsetEntry.cs │ │ │ └── Toolbox │ │ │ │ └── DesignToolbox.cs │ │ │ ├── DesignTab.cs │ │ │ ├── EditorOffsetPanel.cs │ │ │ ├── Setup │ │ │ ├── Entries │ │ │ │ ├── SetupAsset.cs │ │ │ │ ├── SetupColor.cs │ │ │ │ ├── SetupKeymode.cs │ │ │ │ ├── SetupSlider.cs │ │ │ │ ├── SetupTextBox.cs │ │ │ │ └── SetupToggle.cs │ │ │ ├── SetupEntry.cs │ │ │ ├── SetupHeader.cs │ │ │ └── SetupSection.cs │ │ │ ├── SetupTab.cs │ │ │ ├── Shared │ │ │ ├── EditorTabContainer.cs │ │ │ ├── Lines │ │ │ │ └── EditorTimingLines.cs │ │ │ ├── Points │ │ │ │ ├── List │ │ │ │ │ ├── PointListEntry.cs │ │ │ │ │ └── PointsList.cs │ │ │ │ ├── PointsSidebar.cs │ │ │ │ ├── SelectionInspector.cs │ │ │ │ └── Settings │ │ │ │ │ ├── PointSettingsColor.cs │ │ │ │ │ ├── PointSettingsDropdown.cs │ │ │ │ │ ├── PointSettingsIncrements.cs │ │ │ │ │ ├── PointSettingsLaneMask.cs │ │ │ │ │ ├── PointSettingsSlider.cs │ │ │ │ │ ├── PointSettingsTextBox.cs │ │ │ │ │ ├── PointSettingsTitle.cs │ │ │ │ │ ├── PointSettingsToggle.cs │ │ │ │ │ ├── Preset │ │ │ │ │ ├── PointSettingsBeats.cs │ │ │ │ │ ├── PointSettingsEasing.cs │ │ │ │ │ ├── PointSettingsLength.cs │ │ │ │ │ ├── PointSettingsTime.cs │ │ │ │ │ └── PointSettingsToCurrentButton.cs │ │ │ │ │ └── Waveform │ │ │ │ │ └── WaveformDisplay.cs │ │ │ └── Toolbox │ │ │ │ ├── EditorToolbox.cs │ │ │ │ ├── ToolboxButton.cs │ │ │ │ └── ToolboxCategory.cs │ │ │ ├── Storyboarding │ │ │ ├── Settings │ │ │ │ └── StoryboardElementSettings.cs │ │ │ ├── StoryboardTab.cs │ │ │ └── Timeline │ │ │ │ ├── Blueprints │ │ │ │ ├── TimelineBlueprintContainer.cs │ │ │ │ └── TimelineElementBlueprint.cs │ │ │ │ ├── Elements │ │ │ │ └── TimelineElement.cs │ │ │ │ └── StoryboardTimeline.cs │ │ │ ├── Verify │ │ │ ├── Checks │ │ │ │ ├── Assets │ │ │ │ │ ├── AudioExistsCheck.cs │ │ │ │ │ └── UnusedAssetsCheck.cs │ │ │ │ ├── BasicVerifyContext.cs │ │ │ │ ├── Effects │ │ │ │ │ └── UnevenInEvenCountCheck.cs │ │ │ │ ├── HitObjects │ │ │ │ │ ├── EmptyColumnsCheck.cs │ │ │ │ │ └── ValidKeyCountCheck.cs │ │ │ │ └── Metadata │ │ │ │ │ └── EmptyFieldCheck.cs │ │ │ ├── IVerifyCheck.cs │ │ │ ├── IVerifyContext.cs │ │ │ ├── VerifyIssue.cs │ │ │ ├── VerifyIssueEntry.cs │ │ │ └── VerifyResults.cs │ │ │ ├── VerifyTab.cs │ │ │ └── WipEditorTab.cs │ ├── FluXisScreen.cs │ ├── FluXisScreenStack.cs │ ├── Gameplay │ │ ├── Audio │ │ │ ├── GameplayClock.cs │ │ │ ├── GameplayClockContainer.cs │ │ │ └── Hitsounds │ │ │ │ ├── HitSoundChannel.cs │ │ │ │ └── Hitsounding.cs │ │ ├── DebugText.cs │ │ ├── EventHandler.cs │ │ ├── GameplayLoader.cs │ │ ├── GameplaySamples.cs │ │ ├── GameplayScreen.cs │ │ ├── HUD │ │ │ ├── Components │ │ │ │ ├── AccuracyDisplay.cs │ │ │ │ ├── AttributeText.cs │ │ │ │ ├── BigBlackBox.cs │ │ │ │ ├── ComboCounter.cs │ │ │ │ ├── HealthBar.cs │ │ │ │ ├── HitErrorBar.cs │ │ │ │ ├── JudgementCounter.cs │ │ │ │ ├── JudgementDisplay.cs │ │ │ │ ├── PerformanceRatingDisplay.cs │ │ │ │ └── Progressbar.cs │ │ │ ├── GameplayHUD.cs │ │ │ ├── GameplayHUDComponent.cs │ │ │ ├── HUDComponentSettings.cs │ │ │ ├── HUDLayout.cs │ │ │ ├── IHUDDependencyProvider.cs │ │ │ ├── LayoutManager.cs │ │ │ └── Leaderboard │ │ │ │ ├── GameplayLeaderboard.cs │ │ │ │ ├── LeaderboardEntry.cs │ │ │ │ └── SelfLeaderboardEntry.cs │ │ ├── Input │ │ │ ├── GameplayInput.cs │ │ │ └── GameplayTouchInput.cs │ │ ├── Overlay │ │ │ ├── Effect │ │ │ │ ├── FlashOverlay.cs │ │ │ │ └── PulseEffect.cs │ │ │ ├── FullComboOverlay.cs │ │ │ └── QuickActionOverlay.cs │ │ ├── Practice │ │ │ └── PracticeGameplayScreen.cs │ │ ├── Replays │ │ │ ├── ReplayGameplayScreen.cs │ │ │ ├── ReplayInput.cs │ │ │ ├── ReplayOverlay.cs │ │ │ └── ReplayRulesetContainer.cs │ │ ├── Ruleset │ │ │ ├── BeatPulseManager.cs │ │ │ ├── HitObjects │ │ │ │ ├── DrawableHitObject.cs │ │ │ │ ├── DrawableLongNote.cs │ │ │ │ ├── DrawableNote.cs │ │ │ │ ├── DrawableTickNote.cs │ │ │ │ ├── HitObjectColumn.cs │ │ │ │ ├── HitObjectManager.cs │ │ │ │ └── Long │ │ │ │ │ ├── DrawableLongNoteHead.cs │ │ │ │ │ ├── DrawableLongNotePart.cs │ │ │ │ │ └── DrawableLongNoteTail.cs │ │ │ ├── LaneSwitchManager.cs │ │ │ ├── Playfields │ │ │ │ ├── Playfield.cs │ │ │ │ ├── PlayfieldManager.cs │ │ │ │ ├── PlayfieldPlayer.cs │ │ │ │ └── UI │ │ │ │ │ ├── KeyOverlay.cs │ │ │ │ │ └── LaneSwitchAlert.cs │ │ │ ├── Receptor.cs │ │ │ ├── RulesetContainer.cs │ │ │ ├── Stage.cs │ │ │ └── TimingLines │ │ │ │ ├── TimingLine.cs │ │ │ │ └── TimingLineManager.cs │ │ ├── Tutorial │ │ │ └── TutorialGameplay.cs │ │ └── UI │ │ │ ├── DangerHealthOverlay.cs │ │ │ ├── Menus │ │ │ ├── FailMenu.cs │ │ │ ├── GameplayMenuButton.cs │ │ │ └── PauseMenu.cs │ │ │ ├── ModsDisplay.cs │ │ │ ├── ScoreSubmissionOverlay.cs │ │ │ └── SkipOverlay.cs │ ├── Intro │ │ ├── IntroAnimation.cs │ │ └── IntroCorner.cs │ ├── Layout │ │ ├── Blueprints │ │ │ ├── LayoutBlueprintContainer.cs │ │ │ └── Selection │ │ │ │ ├── ComponentSelectionBlueprint.cs │ │ │ │ └── ComponentSelectionHandler.cs │ │ ├── Components │ │ │ ├── ComponentList.cs │ │ │ └── LayoutListComponent.cs │ │ ├── LayoutEditor.cs │ │ └── Settings │ │ │ └── ComponentsSettings.cs │ ├── Loading │ │ ├── LoadingBubbles.cs │ │ └── LoadingScreen.cs │ ├── Menu │ │ ├── MenuScreen.cs │ │ ├── MenuSplashes.cs │ │ └── UI │ │ │ ├── Buttons │ │ │ ├── MenuButtonBase.cs │ │ │ ├── MenuExitButton.cs │ │ │ ├── MenuImageButton.cs │ │ │ └── MenuLongButton.cs │ │ │ ├── MenuLinkButton.cs │ │ │ ├── NowPlaying │ │ │ └── MenuNowPlaying.cs │ │ │ ├── Snow │ │ │ └── MenuSnow.cs │ │ │ ├── Updates │ │ │ └── MenuUpdates.cs │ │ │ └── Visualizer │ │ │ └── MenuVisualizer.cs │ ├── Multiplayer │ │ ├── DisconnectedPanel.cs │ │ ├── Gameplay │ │ │ ├── MultiGameplayScreen.cs │ │ │ ├── MultiResults.cs │ │ │ ├── MultiplayerResults.cs │ │ │ └── Results │ │ │ │ ├── MultiResultsHeader.cs │ │ │ │ ├── MultiResultsScore.cs │ │ │ │ └── MultiResultsScores.cs │ │ ├── MultiSubScreen.cs │ │ ├── MultiplayerMenuMusic.cs │ │ ├── MultiplayerScreen.cs │ │ └── SubScreens │ │ │ ├── MultiModeButton.cs │ │ │ ├── MultiModeSelect.cs │ │ │ ├── Open │ │ │ ├── List │ │ │ │ ├── CreateRoomPanel.cs │ │ │ │ ├── List │ │ │ │ │ ├── EmptyLobbySlot.cs │ │ │ │ │ └── LobbySlot.cs │ │ │ │ ├── MultiLobbyList.cs │ │ │ │ └── MultiLobbyListFooter.cs │ │ │ └── Lobby │ │ │ │ ├── MultiLobby.cs │ │ │ │ ├── MultiLobbyFooter.cs │ │ │ │ ├── MultiSelectScreen.cs │ │ │ │ └── UI │ │ │ │ ├── Disc │ │ │ │ ├── DiscVisualizer.cs │ │ │ │ └── MultiLobbyDisc.cs │ │ │ │ ├── MultiCountdown.cs │ │ │ │ ├── MultiLobbyPlayerList.cs │ │ │ │ └── PlayerList │ │ │ │ └── PlayerListEntry.cs │ │ │ └── Ranked │ │ │ └── MultiRankedMain.cs │ ├── Offset │ │ └── OffsetSetup.cs │ ├── Ranking │ │ ├── Rankings.cs │ │ └── UI │ │ │ └── LeaderboardUser.cs │ ├── Result │ │ ├── Center │ │ │ ├── ResultsCenter.cs │ │ │ ├── ResultsCenterScore.cs │ │ │ └── ResultsCenterStats.cs │ │ ├── Header │ │ │ ├── ResultsMap.cs │ │ │ └── ResultsPlayer.cs │ │ ├── Results.cs │ │ ├── ResultsContent.cs │ │ ├── ResultsFooter.cs │ │ ├── ResultsHeader.cs │ │ ├── Sides │ │ │ ├── Presets │ │ │ │ └── ResultsSideDoubleText.cs │ │ │ ├── ResultsSideContainer.cs │ │ │ ├── ResultsSideList.cs │ │ │ └── Types │ │ │ │ ├── ResultsSideGraph.cs │ │ │ │ ├── ResultsSideJudgements.cs │ │ │ │ ├── ResultsSideMore.cs │ │ │ │ ├── ResultsSideRankings.cs │ │ │ │ └── ResultsSideVoting.cs │ │ └── SoloResults.cs │ ├── Select │ │ ├── Footer │ │ │ ├── Options │ │ │ │ ├── FooterOptionButton.cs │ │ │ │ ├── FooterOptionSection.cs │ │ │ │ └── FooterOptions.cs │ │ │ ├── Practice │ │ │ │ ├── FooterPractice.cs │ │ │ │ ├── FooterPracticeControl.cs │ │ │ │ └── FooterPracticeGraph.cs │ │ │ ├── SelectFooter.cs │ │ │ └── SelectModsButton.cs │ │ ├── Info │ │ │ ├── Header │ │ │ │ └── SelectMapInfoHeader.cs │ │ │ ├── SelectInfoTabs.cs │ │ │ ├── SelectMapInfo.cs │ │ │ └── Tabs │ │ │ │ ├── Scores │ │ │ │ ├── ScoreListEntry.cs │ │ │ │ └── ScoreListTab.cs │ │ │ │ ├── SelectInfoTab.cs │ │ │ │ └── Settings │ │ │ │ └── MapSettingsTab.cs │ │ ├── List │ │ │ ├── Drawables │ │ │ │ ├── Difficulty │ │ │ │ │ └── DrawableDifficultyItem.cs │ │ │ │ ├── MapSet │ │ │ │ │ ├── DrawableMapSetDifficulty.cs │ │ │ │ │ ├── DrawableMapSetHeader.cs │ │ │ │ │ └── DrawableMapSetItem.cs │ │ │ │ └── RoundedOutline.cs │ │ │ ├── Items │ │ │ │ ├── IListItem.cs │ │ │ │ ├── MapDifficultyItem.cs │ │ │ │ └── MapSetItem.cs │ │ │ ├── MapList.cs │ │ │ └── StatusTag.cs │ │ ├── Mods │ │ │ ├── ModCategory.cs │ │ │ ├── ModEntry.cs │ │ │ ├── ModSelectRate.cs │ │ │ └── ModsOverlay.cs │ │ ├── Search │ │ │ ├── Dropdown │ │ │ │ ├── SearchDropdownBPM.cs │ │ │ │ ├── SearchDropdownKeymode.cs │ │ │ │ └── SearchDropdownStatus.cs │ │ │ ├── DropdownIcon.cs │ │ │ ├── SearchBar.cs │ │ │ ├── SearchDropdown.cs │ │ │ ├── SearchFilterControls.cs │ │ │ └── SearchTextBox.cs │ │ ├── SelectScreen.cs │ │ ├── SelectScreen_Gamepad.cs │ │ ├── SoloSelectScreen.cs │ │ └── UI │ │ │ ├── SelectLetter.cs │ │ │ └── SelectNoMaps.cs │ ├── Skinning │ │ ├── SkinEditor.cs │ │ ├── SkinEditorPlayfield.cs │ │ └── UI │ │ │ ├── SkinEditorColor.cs │ │ │ └── SkinEditorTextBox.cs │ ├── Warning │ │ └── WarningScreen.cs │ ├── Wiki │ │ └── Wiki.cs │ └── WorkInProgressScreen.cs ├── Scripting │ ├── ILuaModel.cs │ ├── Models │ │ ├── LuaMath.cs │ │ ├── LuaVector.cs │ │ └── Storyboarding │ │ │ ├── Elements │ │ │ ├── LuaStoryboardBox.cs │ │ │ ├── LuaStoryboardSprite.cs │ │ │ └── LuaStoryboardText.cs │ │ │ ├── LuaStoryboard.cs │ │ │ ├── LuaStoryboardAnimation.cs │ │ │ └── LuaStoryboardElement.cs │ ├── Runners │ │ ├── EffectScriptRunner.cs │ │ └── StoryboardScriptRunner.cs │ ├── ScriptRunner.cs │ └── ScriptStorage.cs ├── Skinning │ ├── Bases │ │ ├── ColorableSkinDrawable.cs │ │ ├── HitObjects │ │ │ └── ICanHaveSnapColor.cs │ │ └── Judgements │ │ │ └── AbstractJudgementText.cs │ ├── Custom │ │ ├── CustomSkin.cs │ │ ├── Health │ │ │ └── SkinnableHealthBar.cs │ │ ├── HitObjects │ │ │ ├── CustomHitObjectBody.cs │ │ │ └── CustomHitObjectPiece.cs │ │ ├── Judgements │ │ │ └── SkinnableJudgementText.cs │ │ └── Lighting │ │ │ └── SkinnableHitLighting.cs │ ├── Default │ │ ├── DefaultSkin.cs │ │ ├── DefaultSkinJson.cs │ │ ├── Health │ │ │ ├── DefaultHealthBackground.cs │ │ │ └── DefaultHealthBar.cs │ │ ├── HitObject │ │ │ ├── DefaultHitObjectBody.cs │ │ │ ├── DefaultHitObjectEnd.cs │ │ │ ├── DefaultHitObjectPiece.cs │ │ │ └── DefaultTickNote.cs │ │ ├── ICustomColorProvider.cs │ │ ├── Judgements │ │ │ └── DefaultJudgementText.cs │ │ ├── Lighting │ │ │ └── DefaultColumnLighting.cs │ │ ├── Receptor │ │ │ ├── DefaultReceptorDown.cs │ │ │ └── DefaultReceptorUp.cs │ │ ├── Results │ │ │ └── DefaultResultsRank.cs │ │ └── Stage │ │ │ ├── DefaultBottomLaneCover.cs │ │ │ ├── DefaultHitLine.cs │ │ │ ├── DefaultStageBackground.cs │ │ │ ├── DefaultStageBorderLeft.cs │ │ │ ├── DefaultStageBorderRight.cs │ │ │ └── DefaultTopLaneCover.cs │ ├── DefaultCircle │ │ ├── DefaultCircleSkin.cs │ │ ├── HitObject │ │ │ ├── DefaultCircleHitObjectBody.cs │ │ │ ├── DefaultCircleHitObjectEnd.cs │ │ │ ├── DefaultCircleHitObjectPiece.cs │ │ │ └── DefaultCircleTickNote.cs │ │ ├── Lighting │ │ │ └── DefaultCircleColumnLighting.cs │ │ └── Receptor │ │ │ ├── DefaultCircleReceptorDown.cs │ │ │ └── DefaultCircleReceptorUp.cs │ ├── ISkin.cs │ ├── Json │ │ ├── SkinInfo.cs │ │ ├── SkinJson.cs │ │ ├── SkinJudgements.cs │ │ ├── SkinKeymode.cs │ │ └── SkinSnapColors.cs │ ├── SkinManager.cs │ └── SkinnableSprite.cs ├── Storyboards │ ├── Drawables │ │ ├── DrawableStoryboard.cs │ │ ├── DrawableStoryboardElement.cs │ │ ├── DrawableStoryboardLayer.cs │ │ ├── DrawableStoryboardWrapper.cs │ │ └── Elements │ │ │ ├── DrawableStoryboardBox.cs │ │ │ ├── DrawableStoryboardSprite.cs │ │ │ └── DrawableStoryboardText.cs │ ├── Storage │ │ └── StoryboardStorage.cs │ ├── Storyboard.cs │ ├── StoryboardAnimation.cs │ └── StoryboardElement.cs ├── UI │ ├── Corner.cs │ ├── HoldToConfirmHandler.cs │ ├── Season.cs │ ├── SelectedState.cs │ └── Tips │ │ └── LoadingTips.cs ├── Updater │ └── GitHub │ │ ├── GitHubAsset.cs │ │ └── GitHubRelease.cs ├── Utils │ ├── Attributes │ │ ├── BindableSettingAttribute.cs │ │ └── IconAttribute.cs │ ├── CountryUtils.cs │ ├── Exceptions │ │ └── SteamInitException.cs │ ├── Extensions │ │ ├── APIExtensions.cs │ │ ├── DrawableExtensions.cs │ │ └── ReplayExtensions.cs │ ├── IDragDropHandler.cs │ ├── IdleTracker.cs │ ├── ImageUtils.cs │ ├── InputUtils.cs │ ├── JsonUtils.cs │ ├── LocaleUtils.cs │ ├── MapUtils.cs │ ├── ModUtils.cs │ ├── PathUtils.cs │ ├── SearchFilter.cs │ ├── Sentry │ │ └── SentryClient.cs │ ├── StringUtils.cs │ └── TimeUtils.cs └── fluXis.csproj ├── global.json └── scripting ├── README.md ├── config.json └── library ├── effect.lua ├── enums.lua ├── math.lua ├── shared.lua ├── storyboard.lua └── struct.lua /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | .vs 4 | .vscode 5 | .idea 6 | *.nupkg 7 | Releases 8 | create-release.bat 9 | fluXis.sln.DotSettings.user 10 | steam_appid.txt -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Framework"] 2 | path = Framework 3 | url = https://github.com/InventiveRhythm/osu-framework 4 | -------------------------------------------------------------------------------- /fluXis.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /fluXis.Android/Resources/drawable/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Android/Resources/drawable/ic_background.png -------------------------------------------------------------------------------- /fluXis.Android/Resources/drawable/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Android/Resources/drawable/ic_foreground.png -------------------------------------------------------------------------------- /fluXis.Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /fluXis.Desktop/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Desktop/game.ico -------------------------------------------------------------------------------- /fluXis.Desktop/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Desktop/libsteam_api.so -------------------------------------------------------------------------------- /fluXis.Desktop/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Desktop/steam_api64.dll -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_1.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_2.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_3.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Brands_4.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_1.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_2.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Regular_3.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_00.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_01.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_02.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_03.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_04.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_05.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_06.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_07.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_08.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_09.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_10.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_11.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_12.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_13.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_14.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_15.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_16.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_17.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_18.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_19.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_20.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_21.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_22.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_23.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_24.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_25.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_26.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_27.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_28.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_29.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_30.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_31.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_32.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_33.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/FontAwesome6/FontAwesome6-Solid_34.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_1.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/JetBrainsMono/JetBrainsMono_2.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_00.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_01.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_02.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_03.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_04.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_05.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_06.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_07.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_08.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_09.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_10.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_11.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_12.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_13.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_14.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_15.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_16.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_17.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_18.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_19.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_20.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_21.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_22.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_23.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_24.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_25.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_26.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_27.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_28.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_29.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_30.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/MOBO/MOBO_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/MOBO/MOBO_31.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Basic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Basic.bin -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Basic_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Basic_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Basic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Basic_1.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Basic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Basic_2.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Basic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Basic_3.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic.bin -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_00.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_01.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_02.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_03.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_04.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_05.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_06.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_07.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_08.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_09.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_10.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_11.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_12.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_13.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_14.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_15.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_16.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_17.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_18.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_19.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_20.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_21.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_22.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_23.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_24.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_25.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_26.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_27.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_28.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_29.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_30.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_31.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_32.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_33.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_34.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_35.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_36.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_37.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_38.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_39.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_40.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_41.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_42.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_43.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_44.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_45.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_46.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_47.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_48.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_49.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_50.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_51.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_52.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_53.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_54.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_55.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_56.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_57.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_58.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_59.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_60.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_61.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_62.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_63.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_64.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_65.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_66.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_67.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_68.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_69.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_70.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_71.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_72.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_73.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_74.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_75.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_76.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_77.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_78.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_79.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_80.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_81.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_82.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_83.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_84.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_85.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_86.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_87.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_88.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_89.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_90.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_91.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_92.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Basic_93.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility.bin -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_00.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_01.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_02.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_03.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_04.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_05.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_06.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_07.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_08.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_09.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_10.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_11.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_12.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_13.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_14.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_15.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_16.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_17.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_18.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_19.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_20.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_21.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_22.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_23.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_24.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_25.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_26.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_27.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_28.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_29.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-CJK-Compatibility_30.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul.bin -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_00.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_01.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_02.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_03.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_04.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_05.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_06.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_07.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_08.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_09.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_10.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_11.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_12.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_13.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_14.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_15.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_16.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_17.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_18.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_19.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_20.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_21.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_22.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_23.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_24.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_25.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_26.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_27.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_28.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_29.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_30.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_31.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_32.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_33.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_34.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_35.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_36.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_37.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_38.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_39.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_40.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_41.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_42.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_43.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Hangul_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Hangul_44.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Thai.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Thai.bin -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Noto/Noto-Thai_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Noto/Noto-Thai_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Renogare/Renogare.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Renogare/Renogare.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/Renogare/Renogare_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/Renogare/Renogare_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/RenogareSoft/RenogareSoft.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/RenogareSoft/RenogareSoft.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/RenogareSoft/RenogareSoft_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/RenogareSoft/RenogareSoft_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/YoureGone/YoureGone.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/YoureGone/YoureGone.fnt -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/YoureGone/YoureGone_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/YoureGone/YoureGone_0.png -------------------------------------------------------------------------------- /fluXis.Resources/Fonts/YoureGone/YoureGone_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Fonts/YoureGone/YoureGone_1.png -------------------------------------------------------------------------------- /fluXis.Resources/Localization/en/settings-plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Plugins", 3 | "import-plugins-title": "Import Plugins" 4 | } -------------------------------------------------------------------------------- /fluXis.Resources/Localization/ja/settings-plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "プラグイン", 3 | "import-plugins-title": "プラグインのインポート" 4 | } -------------------------------------------------------------------------------- /fluXis.Resources/Localization/vi/settings-plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Plugin", 3 | "import-plugins-title": "Nhập Plugin" 4 | } -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Achievement/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Achievement/1.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Achievement/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Achievement/2.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Achievement/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Achievement/3.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/all-flawless.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/all-flawless.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/clap.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/combobreak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/combobreak.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/fail-no-fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/fail-no-fail.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/fail.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/full-combo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/full-combo.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/hitsound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/hitsound.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/kick.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/restart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/restart.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/snare.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/tick-big.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/tick-big.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Gameplay/tick-small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Gameplay/tick-small.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Intro/exit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Intro/exit.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Intro/startup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Intro/startup.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/access-denied.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/access-denied.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/countdown-tick-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/countdown-tick-1.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/countdown-tick-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/countdown-tick-2.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/countdown-warn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/countdown-warn.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/host-changed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/host-changed.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/join.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/join.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/kick.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/leave.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/leave.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/ready.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/ready.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/Multiplayer/unready.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/Multiplayer/unready.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/confirm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/confirm.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/delete.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/error.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/select-all.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/select-all.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/select-char.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/select-char.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/select-word.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/select-word.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/tap-caps.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/tap-caps.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Keyboard/tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Keyboard/tap.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Notifications/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Notifications/error.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Notifications/finish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Notifications/finish.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Notifications/in.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Notifications/in.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Notifications/out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Notifications/out.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Overlay/close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Overlay/close.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Overlay/open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Overlay/open.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/mods-close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/mods-close.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/mods-deselect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/mods-deselect.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/mods-open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/mods-open.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/mods-select.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/mods-select.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/random.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/random.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Select/rewind.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Select/rewind.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Settings/change-tab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Settings/change-tab.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Settings/close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Settings/close.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/Settings/open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/Settings/open.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/accept.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/accept.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/back.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/back.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/click-disabled.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/click-disabled.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/click.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/dropdown-close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/dropdown-close.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/dropdown-open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/dropdown-open.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/hover.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/metronome-end.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/metronome-end.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/metronome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/metronome.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/panel-close-danger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/panel-close-danger.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/panel-close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/panel-close.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/panel-open-danger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/panel-open-danger.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/panel-open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/panel-open.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/scroll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/scroll.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/slider-tick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/slider-tick.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/toggle-off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/toggle-off.wav -------------------------------------------------------------------------------- /fluXis.Resources/Samples/UI/toggle-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Samples/UI/toggle-on.wav -------------------------------------------------------------------------------- /fluXis.Resources/Shaders/chroma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Shaders/chroma.jpg -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Backgrounds/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Backgrounds/default.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Backgrounds/panel_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Backgrounds/panel_base.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Backgrounds/panel_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Backgrounds/panel_lines.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/A.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/B.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/Dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/Dpad.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/DpadDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/DpadDown.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/DpadLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/DpadLeft.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/DpadRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/DpadRight.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/DpadUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/DpadUp.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/LB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/LT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/LeftStick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/LeftStick.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/Menu.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/RB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/RB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/RT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/RT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/RightStick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/RightStick.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/Share.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/View.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/X.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/ButtonIcons/Xbox/Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/ButtonIcons/Xbox/Y.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Covers/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Covers/default.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Cursor/border-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Cursor/border-click.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Cursor/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Cursor/border.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Cursor/fill-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Cursor/fill-click.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Cursor/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Cursor/fill.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AQ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AX.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/AZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BJ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BQ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/BZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CX.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/CZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DJ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/DZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ER.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ES.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ET.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/EU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FJ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/FR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GQ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/GY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/HU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ID.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IQ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/IT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/JE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/JM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/JO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/JP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/KZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/LY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ME.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ML.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MQ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MX.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/MZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NP.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/NZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/OM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/PY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/QA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/RA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/RA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/RO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/RS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/RU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/RW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SB.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SJ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ST.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SX.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/SZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TD.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TH.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TJ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TL.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TO.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TV.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/TZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/US.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UY.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/UZ.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VC.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VG.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VI.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VN.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/VU.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/WF.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/WS.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/XK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/XK.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/YE.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/YT.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ZA.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ZM.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Flags/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Flags/ZW.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/Flash.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/LaneSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/LaneSwitch.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/PlayfieldMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/PlayfieldMove.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/PlayfieldRotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/PlayfieldRotate.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/PlayfieldScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/PlayfieldScale.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/Pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/Pulse.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/Shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/Shader.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Icons/Shake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Icons/Shake.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Logos/logo-text-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Logos/logo-text-shadow.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Logos/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Logos/logo-text.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Multiplayer/button-lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Multiplayer/button-lobby.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Multiplayer/button-ranked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Multiplayer/button-ranked.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Online/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Online/default-avatar.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Online/default-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Online/default-banner.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/QR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/QR.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/circle.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/inner-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/inner-circle.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/outer-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/outer-circle.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-a.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-aa.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-b.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-c.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-d.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-s.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-ss.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Results/rank-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Results/rank-x.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Skins/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Skins/circle.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Skins/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Skins/default.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/Skins/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/Skins/missing.png -------------------------------------------------------------------------------- /fluXis.Resources/Textures/menu-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Textures/menu-edit.png -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Gameplay/DeathLoop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Gameplay/DeathLoop.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Christmashouse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Christmashouse.ogg -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/base.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/base.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/lobby-list.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/lobby-list.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/lobby-prepare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/lobby-prepare.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/lose.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/ranked-main.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/ranked-main.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/ranked-prepare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/ranked-prepare.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Multiplayer/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Multiplayer/win.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Offset.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Offset.mp3 -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Roundhouse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Roundhouse.ogg -------------------------------------------------------------------------------- /fluXis.Resources/Tracks/Menu/Spoophouse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventiveRhythm/fluXis/eee73efe7712d566b912290e9fd27e9521a46a0f/fluXis.Resources/Tracks/Menu/Spoophouse.ogg -------------------------------------------------------------------------------- /fluXis/Audio/IAmplitudeProvider.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Audio; 2 | 3 | public interface IAmplitudeProvider 4 | { 5 | float[] Amplitudes { get; } 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/Configuration/ScrollDirection.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Configuration; 2 | 3 | public enum ScrollDirection 4 | { 5 | Down, 6 | Up 7 | } 8 | -------------------------------------------------------------------------------- /fluXis/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /fluXis/Graphics/IHasLoadedValue.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Graphics; 2 | 3 | public interface IHasLoadedValue 4 | { 5 | bool Loaded { get; } 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/Graphics/UserInterface/Menus/MenuItemType.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Graphics.UserInterface.Menus; 2 | 3 | public enum MenuItemType 4 | { 5 | Normal, 6 | Highlighted, 7 | Dangerous 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Graphics/UserInterface/Panel/ICloseable.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Graphics.UserInterface.Panel; 2 | 3 | public interface ICloseable 4 | { 5 | public void Close(); 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/Map/Structures/Bases/IHasDuration.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Map.Structures.Bases; 2 | 3 | public interface IHasDuration 4 | { 5 | double Duration { get; set; } 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/Map/Structures/Bases/IHasEasing.cs: -------------------------------------------------------------------------------- 1 | using osu.Framework.Graphics; 2 | 3 | namespace fluXis.Map.Structures.Bases; 4 | 5 | public interface IHasEasing 6 | { 7 | Easing Easing { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Mods/IApplicableToEvents.cs: -------------------------------------------------------------------------------- 1 | using fluXis.Map; 2 | 3 | namespace fluXis.Mods; 4 | 5 | public interface IApplicableToEvents 6 | { 7 | void Apply(MapEvents events); 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Mods/IApplicableToHitObject.cs: -------------------------------------------------------------------------------- 1 | using fluXis.Map.Structures; 2 | 3 | namespace fluXis.Mods; 4 | 5 | public interface IApplicableToHitObject 6 | { 7 | void Apply(HitObject hit); 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Mods/IApplicableToMap.cs: -------------------------------------------------------------------------------- 1 | using fluXis.Map; 2 | 3 | namespace fluXis.Mods; 4 | 5 | public interface IApplicableToMap 6 | { 7 | void Apply(MapInfo map); 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Online/API/Models/Maps/DualMode.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Online.API.Models.Maps; 2 | 3 | public enum DualMode 4 | { 5 | Disabled = 0, 6 | Mirrored = 1, 7 | Separate = 2, 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Online/API/Models/Multi/MultiplayerPrivacy.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Online.API.Models.Multi; 2 | 3 | public enum MultiplayerPrivacy 4 | { 5 | Public, 6 | Club, 7 | Private 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Overlay/Mouse/ICursorDrag.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Overlay.Mouse; 2 | 3 | /// 4 | /// Makes the cursor rotate when dragged. 5 | /// 6 | public interface ICursorDrag 7 | { 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Overlay/Notifications/LoadingState.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Overlay.Notifications; 2 | 3 | public enum LoadingState 4 | { 5 | Working, 6 | Complete, 7 | Failed 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Scoring/Enums/HealthMode.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Scoring.Enums; 2 | 3 | public enum HealthMode 4 | { 5 | Requirement, 6 | Normal, 7 | Drain 8 | } 9 | -------------------------------------------------------------------------------- /fluXis/Screens/Wiki/Wiki.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Screens.Wiki; 2 | 3 | public partial class Wiki : WorkInProgressScreen 4 | { 5 | protected override string Title => "Wiki"; 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/Skinning/Bases/HitObjects/ICanHaveSnapColor.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Skinning.Bases.HitObjects; 2 | 3 | public interface ICanHaveSnapColor 4 | { 5 | void ApplySnapColor(int start, int end); 6 | } 7 | -------------------------------------------------------------------------------- /fluXis/UI/Corner.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.UI; 2 | 3 | public enum Corner 4 | { 5 | TopLeft, 6 | TopRight, 7 | BottomLeft, 8 | BottomRight 9 | } 10 | -------------------------------------------------------------------------------- /fluXis/UI/Season.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.UI; 2 | 3 | public enum Season 4 | { 5 | Normal, 6 | Summer, 7 | Halloween, 8 | Winter, 9 | Christmas, 10 | } 11 | -------------------------------------------------------------------------------- /fluXis/UI/SelectedState.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.UI; 2 | 3 | public enum SelectedState 4 | { 5 | Deselected, 6 | Selected 7 | } 8 | -------------------------------------------------------------------------------- /fluXis/Utils/IDragDropHandler.cs: -------------------------------------------------------------------------------- 1 | namespace fluXis.Utils; 2 | 3 | public interface IDragDropHandler 4 | { 5 | public string[] AllowedExtensions { get; } 6 | public bool OnDragDrop(string file); 7 | } 8 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "8.0.0", 4 | "rollForward": "latestMajor", 5 | "allowPrerelease": true 6 | } 7 | } --------------------------------------------------------------------------------