├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report-en.yml │ ├── bug-report-jp.yml │ ├── enhancement-en.yml │ └── enhancement-jp.yml └── workflows │ ├── CI.yml │ └── build.yml ├── .gitignore ├── .vscode └── extensions.json ├── BannedSymbols.txt ├── Directory.Build.props ├── FDK19 ├── FDK19.csproj ├── mplus-1p-medium.ttf └── src │ ├── 00.Common │ ├── CActivity.cs │ ├── CCommon.cs │ ├── CConvert.cs │ ├── CCounter.cs │ ├── CFPS.cs │ ├── CJudgeTextEncoding.cs │ ├── CTimer.cs │ ├── CTimerBase.cs │ ├── CTraceLogListener.cs │ └── CWebOpen.cs │ ├── 01.Framework │ ├── Device.cs │ ├── Game.cs │ └── SDL │ │ ├── GameWindow.cs │ │ ├── MouseWheelEvent.cs │ │ └── WindowState.cs │ ├── 02.Input │ ├── CInputJoystick.cs │ ├── CInputKeyboard.cs │ ├── CInputMIDI.cs │ ├── CInputManager.cs │ ├── CInputMouse.cs │ ├── DeviceConstantConverter.cs │ ├── EInputDeviceType.cs │ ├── IInputDevice.cs │ ├── STInputEvent.cs │ └── SlimDXKeys.cs │ ├── 03.Sound │ ├── CAudioDecoder.cs │ ├── CBassLibraryLoader.cs │ ├── CSound.cs │ ├── CSoundDeviceASIO.cs │ ├── CSoundDeviceBASS.cs │ ├── CSoundDeviceWASAPI.cs │ ├── CSoundManager.cs │ ├── CSoundTimer.cs │ ├── ESoundDeviceType.cs │ ├── ESoundGroup.cs │ ├── ExtensionMethods │ │ └── BassMixExtensions.cs │ ├── ISoundDevice.cs │ ├── LoudnessMetadata.cs │ ├── LoudnessMetadataScanner.cs │ ├── Lufs.cs │ ├── SongGainController.cs │ └── SoundGroupLevelController.cs │ └── 04.Graphic │ ├── CDecodedFrame.cs │ ├── CFrameConverter.cs │ ├── CTexture.cs │ ├── CTextureCreateFailedException.cs │ ├── CVideoDecoder.cs │ └── TextRenderer │ ├── CCachedFontRenderer.cs │ ├── CFontRenderer.cs │ ├── CSkiaSharpTextRenderer.cs │ └── ITextRenderer.cs ├── LICENSE ├── Readme.md ├── TJAPlayer3-f.sln └── TJAPlayer3-f ├── Docs ├── AdditionalFeatures.md └── Readme.md ├── Libs ├── linux-arm │ ├── libbass.so │ ├── libbass_fx.so │ └── libbassmix.so ├── linux-arm64 │ ├── libbass.so │ ├── libbass_fx.so │ └── libbassmix.so ├── linux-x64 │ ├── libbass.so │ ├── libbass_fx.so │ └── libbassmix.so ├── linux-x86 │ ├── libbass.so │ ├── libbass_fx.so │ └── libbassmix.so ├── osx │ ├── libbass.dylib │ ├── libbass_fx.dylib │ └── libbassmix.dylib ├── win-x64 │ ├── bass.dll │ ├── bass_fx.dll │ ├── bassasio.dll │ ├── bassmix.dll │ └── basswasapi.dll └── win-x86 │ ├── bass.dll │ ├── bass_fx.dll │ ├── bassasio.dll │ ├── bassmix.dll │ └── basswasapi.dll ├── Songs └── SampleSongs │ ├── Nijiiro_Dojo_sample │ ├── DonguriKorokoro.lrc │ ├── DonguriKorokoro.ogg │ ├── Katatsumuri.lrc │ ├── Katatsumuri.ogg │ └── lrc_sample.tja │ ├── box.def │ └── lrc_sample │ ├── DonguriKorokoro.lrc │ ├── DonguriKorokoro.ogg │ ├── Katatsumuri.lrc │ ├── Katatsumuri.ogg │ └── lrc_sample.tja ├── System └── Honkehuu │ ├── Graphics │ ├── 1P_NamePlate.png │ ├── 1_Title │ │ ├── ActiveBar.png │ │ ├── Background.png │ │ └── InactiveBar.png │ ├── 2P_NamePlate.png │ ├── 2_Config │ │ ├── Arrow.png │ │ ├── Background.png │ │ ├── Cursor.png │ │ ├── Enum_Song.png │ │ ├── ItemBox.png │ │ └── KeyAssign.png │ ├── 3_SongSelect │ │ ├── 1_Difficulty_Select │ │ │ ├── ChangeSE_Box.png │ │ │ ├── ChangeSE_Note.png │ │ │ ├── ChangeSE_Num.png │ │ │ ├── Dan_Box.png │ │ │ ├── Dan_Box_Selecting.png │ │ │ ├── Difficulty_Anc_1P.png │ │ │ ├── Difficulty_Anc_2P.png │ │ │ ├── Difficulty_Anc_Box_1P.png │ │ │ ├── Difficulty_Anc_Box_2P.png │ │ │ ├── Difficulty_Anc_Box_Etc_1P.png │ │ │ ├── Difficulty_Anc_Box_Etc_2P.png │ │ │ ├── Difficulty_Anc_Same_1P.png │ │ │ ├── Difficulty_Anc_Same_2P.png │ │ │ ├── Difficulty_BPMBox.png │ │ │ ├── Difficulty_BPMNumber.png │ │ │ ├── Difficulty_Bar_0.png │ │ │ ├── Difficulty_Bar_1.png │ │ │ ├── Difficulty_Bar_2.png │ │ │ ├── Difficulty_Bar_3.png │ │ │ ├── Difficulty_Bar_4.png │ │ │ ├── Difficulty_Bar_Back.png │ │ │ ├── Difficulty_Bar_Option.png │ │ │ ├── Difficulty_Bar_Sound.png │ │ │ ├── Difficulty_Branch.png │ │ │ ├── Difficulty_Center_Bar.png │ │ │ ├── Difficulty_Mark_0.png │ │ │ ├── Difficulty_Mark_1.png │ │ │ ├── Difficulty_Mark_2.png │ │ │ ├── Difficulty_Mark_3.png │ │ │ ├── Difficulty_Mark_4.png │ │ │ ├── Difficulty_PapaMama.png │ │ │ ├── Difficulty_Star.png │ │ │ ├── PlayOption_Active.png │ │ │ └── PlayOption_List.png │ │ ├── 2_Box_Center │ │ │ ├── Box_Center_Genre_0.png │ │ │ ├── Box_Center_Genre_1.png │ │ │ ├── Box_Center_Genre_2.png │ │ │ ├── Box_Center_Genre_3.png │ │ │ ├── Box_Center_Genre_4.png │ │ │ ├── Box_Center_Genre_5.png │ │ │ ├── Box_Center_Genre_6.png │ │ │ ├── Box_Center_Genre_7.png │ │ │ ├── Box_Center_Genre_8.png │ │ │ ├── Box_Center_Header_Genre_0.png │ │ │ ├── Box_Center_Header_Genre_1.png │ │ │ ├── Box_Center_Header_Genre_2.png │ │ │ ├── Box_Center_Header_Genre_3.png │ │ │ ├── Box_Center_Header_Genre_4.png │ │ │ ├── Box_Center_Header_Genre_5.png │ │ │ ├── Box_Center_Header_Genre_6.png │ │ │ ├── Box_Center_Header_Genre_7.png │ │ │ ├── Box_Center_Header_Genre_8.png │ │ │ ├── Box_Center_Text_Genre_1.png │ │ │ ├── Box_Center_Text_Genre_2.png │ │ │ ├── Box_Center_Text_Genre_3.png │ │ │ ├── Box_Center_Text_Genre_4.png │ │ │ ├── Box_Center_Text_Genre_5.png │ │ │ ├── Box_Center_Text_Genre_6.png │ │ │ ├── Box_Center_Text_Genre_7.png │ │ │ └── Box_Center_Text_Genre_8.png │ │ ├── Auto.png │ │ ├── Background.png │ │ ├── Bar_BackBox.png │ │ ├── Bar_Box_Genre_0.png │ │ ├── Bar_Box_Genre_1.png │ │ ├── Bar_Box_Genre_2.png │ │ ├── Bar_Box_Genre_3.png │ │ ├── Bar_Box_Genre_4.png │ │ ├── Bar_Box_Genre_5.png │ │ ├── Bar_Box_Genre_6.png │ │ ├── Bar_Box_Genre_7.png │ │ ├── Bar_Box_Genre_8.png │ │ ├── Bar_Center.png │ │ ├── Bar_Center_Background_Genre_0.png │ │ ├── Bar_Center_Background_Genre_1.png │ │ ├── Bar_Center_Background_Genre_2.png │ │ ├── Bar_Center_Background_Genre_3.png │ │ ├── Bar_Center_Background_Genre_4.png │ │ ├── Bar_Center_Background_Genre_5.png │ │ ├── Bar_Center_Background_Genre_6.png │ │ ├── Bar_Center_Background_Genre_7.png │ │ ├── Bar_Center_Background_Genre_8.png │ │ ├── Bar_Genre_0.png │ │ ├── Bar_Genre_1.png │ │ ├── Bar_Genre_2.png │ │ ├── Bar_Genre_3.png │ │ ├── Bar_Genre_4.png │ │ ├── Bar_Genre_5.png │ │ ├── Bar_Genre_6.png │ │ ├── Bar_Genre_7.png │ │ ├── Bar_Genre_8.png │ │ ├── Branch_Text_NEW.png │ │ ├── Counter_Background_0.png │ │ ├── Counter_Background_1.png │ │ ├── Counter_Number_0.png │ │ ├── Counter_Number_1.png │ │ ├── Cursor_Left.png │ │ ├── Cursor_Right.png │ │ ├── Difficulty.png │ │ ├── Footer.png │ │ ├── Frame_BackBox.png │ │ ├── Frame_Score.png │ │ ├── GenreBackground_0.png │ │ ├── GenreBackground_1.png │ │ ├── GenreBackground_2.png │ │ ├── GenreBackground_3.png │ │ ├── GenreBackground_4.png │ │ ├── GenreBackground_5.png │ │ ├── GenreBackground_6.png │ │ ├── GenreBackground_7.png │ │ ├── GenreBackground_8.png │ │ ├── GenreText.png │ │ ├── Header.png │ │ ├── ItemNumber.png │ │ ├── ItemNumber_BG.png │ │ ├── Level.png │ │ ├── Lyric_Text_0.png │ │ ├── Lyric_Text_1.png │ │ ├── Lyric_Text_2.png │ │ ├── Lyric_Text_3.png │ │ ├── Lyric_Text_4.png │ │ ├── Lyric_Text_5.png │ │ ├── Lyric_Text_6.png │ │ ├── Lyric_Text_7.png │ │ ├── Lyric_Text_8.png │ │ ├── PapaMama.png │ │ ├── ScoreWindow_0.png │ │ ├── ScoreWindow_1.png │ │ ├── ScoreWindow_2.png │ │ ├── ScoreWindow_3.png │ │ ├── ScoreWindow_4.png │ │ ├── ScoreWindow_5.png │ │ ├── ScoreWindow_6.png │ │ ├── ScoreWindow_Text.png │ │ └── Score_Select.png │ ├── 4.1_SongLoading_v2 │ │ ├── Background.png │ │ └── Plate.png │ ├── 4_SongLoading │ │ ├── Background.png │ │ └── Plate.png │ ├── 5_Game │ │ ├── 10_Effects │ │ │ ├── Fire.png │ │ │ ├── GoGoSplash.png │ │ │ ├── Hit │ │ │ │ ├── Explosion.png │ │ │ │ ├── Explosion_Big.png │ │ │ │ ├── FireWorks.png │ │ │ │ ├── Good │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Good_Big │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Perfect │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ └── Perfect_Big │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ ├── Rainbow.png │ │ │ └── Roll │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ ├── 11_Balloon │ │ │ ├── Balloon.png │ │ │ ├── Breaking_0.png │ │ │ ├── Breaking_1.png │ │ │ ├── Breaking_2.png │ │ │ ├── Breaking_3.png │ │ │ ├── Breaking_4.png │ │ │ ├── Breaking_5.png │ │ │ ├── Combo_1P.png │ │ │ ├── Combo_2P.png │ │ │ ├── Number_Combo.png │ │ │ ├── Number_Roll.png │ │ │ └── Roll.png │ │ ├── 12_Lane │ │ │ ├── Background_GoGo.png │ │ │ ├── Background_Main.png │ │ │ ├── Background_Sub.png │ │ │ ├── Base_Expert.png │ │ │ ├── Base_Master.png │ │ │ ├── Base_Normal.png │ │ │ ├── Blue.png │ │ │ ├── Red.png │ │ │ ├── Text_Expert.png │ │ │ ├── Text_Master.png │ │ │ ├── Text_Normal.png │ │ │ └── Yellow.png │ │ ├── 13_Genre │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ ├── 14_GameMode │ │ │ ├── Timer_Frame.png │ │ │ └── Timer_Tick.png │ │ ├── 16_Runner │ │ │ └── 0.png │ │ ├── 17.1_DanC_V2 │ │ │ ├── Background.png │ │ │ ├── Base.png │ │ │ ├── ExamRange.png │ │ │ ├── ExamType.png │ │ │ ├── ExamType_Box.png │ │ │ ├── Failed_Cover.png │ │ │ ├── Failed_Text.png │ │ │ ├── Gauge_Clear.png │ │ │ ├── Gauge_Flush.png │ │ │ ├── Gauge_Normal.png │ │ │ ├── Gauge_Reach.png │ │ │ ├── Number.png │ │ │ ├── Panel.png │ │ │ └── SoulGauge_Box.png │ │ ├── 17_DanC │ │ │ ├── Background.png │ │ │ ├── Base.png │ │ │ ├── ExamRange.png │ │ │ ├── ExamType.png │ │ │ ├── ExamUnit.png │ │ │ ├── Failed.png │ │ │ ├── Gauge_Clear.png │ │ │ ├── Gauge_Flush.png │ │ │ ├── Gauge_Normal.png │ │ │ ├── Gauge_Reach.png │ │ │ ├── Number.png │ │ │ └── Screen.png │ │ ├── 18_Puchichara │ │ │ ├── 0.png │ │ │ └── 1.png │ │ ├── 19_Training │ │ │ ├── Background_Up.png │ │ │ ├── BigNumber.png │ │ │ ├── BigTaiko.png │ │ │ ├── Down.png │ │ │ ├── GoGoPoint.png │ │ │ ├── JumpPoint.png │ │ │ ├── ProgressBar_Red.png │ │ │ ├── ProgressBar_White.png │ │ │ ├── SmallNumber.png │ │ │ └── Speed_Measure.png │ │ ├── 1_Chara │ │ │ ├── 0 │ │ │ │ ├── 10Combo │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── 10Combo_Max │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Balloon_Breaking │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ └── 5.png │ │ │ │ ├── Balloon_Broke │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Balloon_Miss │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Clear │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Clear_Max │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── GoGo │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── GoGoStart │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── GoGoStart_Max │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── GoGo_Max │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Normal │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ └── SoulIn │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 21.png │ │ │ │ │ ├── 22.png │ │ │ │ │ ├── 23.png │ │ │ │ │ ├── 24.png │ │ │ │ │ ├── 25.png │ │ │ │ │ ├── 26.png │ │ │ │ │ ├── 27.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ └── 1 │ │ │ │ ├── 10Combo │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── 10Combo_Max │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── Balloon_Breaking │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ │ ├── Balloon_Broke │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── Balloon_Miss │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── Clear │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── Clear_Max │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── GoGo │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── GoGoStart │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── GoGoStart_Max │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── GoGo_Max │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ ├── Normal │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ │ └── SoulIn │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── 2_Dancer │ │ │ ├── 1 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── 2 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── 3 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── 4 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ └── 5 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ ├── 4_CourseSymbol │ │ │ ├── Easy.png │ │ │ ├── Edit.png │ │ │ ├── Hard.png │ │ │ ├── Normal.png │ │ │ ├── Oni.png │ │ │ └── Tower.png │ │ ├── 5_Background │ │ │ └── 0 │ │ │ │ ├── 1P_Up.png │ │ │ │ ├── 1P_Up_Clear.png │ │ │ │ ├── 1P_Up_YMove.png │ │ │ │ ├── 1P_Up_YMove_Clear.png │ │ │ │ ├── 1p_Up_Sakura.png │ │ │ │ ├── 1p_Up_Sakura_Clear.png │ │ │ │ ├── 2P_Up.png │ │ │ │ ├── 2P_Up_Clear.png │ │ │ │ ├── 2P_Up_YMove.png │ │ │ │ ├── 2P_Up_YMove_Clear.png │ │ │ │ ├── 2p_Up_Sakura.png │ │ │ │ └── 2p_Up_Sakura_Clear.png │ │ ├── 6_Taiko │ │ │ ├── 1P_Background.png │ │ │ ├── 1P_Frame.png │ │ │ ├── 2P_Background.png │ │ │ ├── 2P_Frame.png │ │ │ ├── Base.png │ │ │ ├── Combo.png │ │ │ ├── Combo_Big.png │ │ │ ├── Combo_Effect.png │ │ │ ├── Combo_Text.png │ │ │ ├── Don.png │ │ │ ├── Ka.png │ │ │ ├── LevelDown.png │ │ │ ├── LevelUp.png │ │ │ ├── Score.png │ │ │ ├── Score_1P.png │ │ │ └── Score_2P.png │ │ ├── 7_Gauge │ │ │ ├── 1P.png │ │ │ ├── 1P_Base.png │ │ │ ├── 1P_Explosion.png │ │ │ ├── 1P_Line.png │ │ │ ├── 2P.png │ │ │ ├── 2P_Base.png │ │ │ ├── 2P_Explosion.png │ │ │ ├── 2P_Line.png │ │ │ ├── DanC │ │ │ │ ├── 1P.png │ │ │ │ ├── 1P_Base.png │ │ │ │ ├── 1P_Line.png │ │ │ │ └── Rainbow │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ ├── Fire.png │ │ │ ├── Rainbow │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ └── Soul.png │ │ ├── 8_Footer │ │ │ └── 0.png │ │ ├── 9_End │ │ │ ├── Clear_L_0.png │ │ │ ├── Clear_L_1.png │ │ │ ├── Clear_L_2.png │ │ │ ├── Clear_L_3.png │ │ │ ├── Clear_L_4.png │ │ │ ├── Clear_R_0.png │ │ │ ├── Clear_R_1.png │ │ │ ├── Clear_R_2.png │ │ │ ├── Clear_R_3.png │ │ │ ├── Clear_R_4.png │ │ │ ├── Clear_Text.png │ │ │ ├── Clear_Text_2.png │ │ │ ├── Clear_Text_Effect.png │ │ │ ├── DonderFullCombo_L.png │ │ │ ├── DonderFullCombo_Lane.png │ │ │ ├── DonderFullCombo_R.png │ │ │ ├── DonderFullCombo_Text.png │ │ │ ├── DonderFullCombo_Text_Effect.png │ │ │ ├── Failed_Impact.png │ │ │ ├── Failed_L_0.png │ │ │ ├── Failed_L_1.png │ │ │ ├── Failed_L_2.png │ │ │ ├── Failed_L_3.png │ │ │ ├── Failed_R_0.png │ │ │ ├── Failed_R_1.png │ │ │ ├── Failed_R_2.png │ │ │ ├── Failed_R_3.png │ │ │ ├── Failed_Text.png │ │ │ ├── Fan_0.png │ │ │ ├── Fan_1.png │ │ │ ├── Fan_2.png │ │ │ ├── Fan_3.png │ │ │ ├── FullCombo_Text.png │ │ │ └── FullCombo_Text_Effect.png │ │ ├── Bar.png │ │ ├── Bar_Branch.png │ │ ├── Judge.png │ │ ├── Judge_Meter.png │ │ ├── Notes.png │ │ ├── Notes_Arm.png │ │ ├── Notes_White.png │ │ └── SENotes.png │ ├── 6.1_Result_v2 │ │ ├── Background_0.png │ │ ├── Background_1.png │ │ ├── Gauge.png │ │ ├── GaugeBack.png │ │ ├── GaugeBase.png │ │ ├── Header.png │ │ ├── Mountain_0.png │ │ ├── Mountain_1.png │ │ ├── Number.png │ │ ├── Panel_0.png │ │ └── Panel_1.png │ ├── 6_Result │ │ ├── Background.png │ │ ├── Dan.png │ │ ├── FadeIn.png │ │ ├── Gauge.png │ │ ├── Gauge_Base.png │ │ ├── Header.png │ │ ├── Judge.png │ │ ├── Number.png │ │ ├── Panel.png │ │ ├── Score_Number.png │ │ └── Score_Text.png │ ├── 7_Exit │ │ ├── Curtain.png │ │ └── Text.png │ ├── Console_Font.png │ ├── Console_Font_Small.png │ ├── Crown.png │ ├── DanC_Crown.png │ ├── Difficulty_Icons.png │ ├── Enum_Song.png │ ├── Menu_Highlight.png │ ├── Menu_Title.png │ ├── Network_Connection.png │ ├── Overlay.png │ └── Scanning_Loudness.png │ ├── SkinConfig.toml │ ├── SortConfig.toml │ └── Sounds │ ├── Cancel.ogg │ ├── Change.ogg │ ├── Clear.ogg │ ├── Config BGM.ogg │ ├── Dan │ ├── Failed.ogg │ └── Section.ogg │ ├── Dan_Select.ogg │ ├── Decide.ogg │ ├── DifficultySelect.ogg │ ├── Donder Full Combo.ogg │ ├── Failed.ogg │ ├── Full combo.ogg │ ├── Move.ogg │ ├── NewRecord.ogg │ ├── Now loading.ogg │ ├── ResultIn.ogg │ ├── Rotate.ogg │ ├── Scroll.ogg │ ├── Setup BGM.ogg │ ├── Skip.ogg │ ├── SongDecide.ogg │ ├── Taiko │ ├── 0 │ │ ├── Adlib.ogg │ │ ├── dong.ogg │ │ └── ka.ogg │ ├── 1 │ │ ├── dong.ogg │ │ └── ka.ogg │ └── 2 │ │ ├── dong.ogg │ │ └── ka.ogg │ ├── Timbre.ogg │ └── balloon.ogg ├── TJAPlayer3-f.csproj ├── TJAPlayer3-f.ico ├── ThirdPartyLicenses ├── BASS.txt ├── DOBON.NET.txt ├── FFmpeg.AutoGen.txt ├── ManagedBass.md ├── Open-Taiko-Chart.txt ├── ReadJEnc.txt ├── SDL3-CS.txt ├── SDL3.txt ├── SkiaSharp.md ├── Tomlyn.txt ├── discord-rpc ├── discord-rpc-csharp.txt ├── dotnet.TXT ├── dtxmania.txt ├── managed-midi.txt ├── mplus-fonts_E └── mplus-fonts_J └── src ├── Common ├── CConfigIni.cs ├── CConfigToml.cs ├── CPad.cs ├── CSkin.cs ├── ConfigIniToSongGainControllerBinder.cs ├── ConfigIniToSoundGroupLevelControllerBinder.cs ├── C定数.cs ├── C文字コンソール.cs ├── DiscordRichPresence.cs ├── KeyboardSoundGroupLevelControlHandler.cs ├── Program.cs └── TJAPlayer3.cs ├── Items ├── CItemBase.cs ├── CItemInteger.cs ├── CItemList.cs └── CItemToggle.cs ├── Songs ├── CBoxDef.cs ├── CDTX.cs ├── CDTXCompanionFileFinder.cs ├── CDTXStyleExtractor.cs ├── CScoreJson.cs ├── CSongsManager.cs ├── ChartLoader │ └── ChartLoader.cs ├── Cスコア.cs ├── C曲リストノード.cs ├── C曲リストノードComparers │ ├── ComparerChain.cs │ ├── C曲リストノードComparerGenre.cs │ ├── C曲リストノードComparerタイトル.cs │ ├── C曲リストノードComparerノード種別.cs │ └── C曲リストノードComparer絶対パス.cs ├── Dan-C.cs └── GaugeIncreaseMode.cs └── Stages ├── 01.StartUp ├── CStageStartUp.cs └── TextureLoader.cs ├── 02.Title ├── CActEnumSongs.cs ├── CActScanningLoudness.cs ├── CEnumSongs.cs └── CStageTitle.cs ├── 04.Config ├── CActConfigKeyAssign.cs ├── CActConfigList.cs └── CStageConfig.cs ├── 05.SongSelect ├── CActSelectChangeSE.cs ├── CActSelectDifficultySelect.cs ├── CActSelectHistoryPanel.cs ├── CActSelectPlayOption.cs ├── CActSelectPopupMenu.cs ├── CActSelectPresound.cs ├── CActSelect曲リスト.cs ├── CActSortSongs.cs └── CStage選曲.cs ├── 06.SongLoading └── CStageSongLoading.cs ├── 07.Game ├── CActComboVoice.cs ├── CActJudgeString.cs ├── CActLyric.cs ├── CActPanel.cs ├── CActPauseMenu.cs ├── CActPlayInfo.cs ├── CActScore.cs ├── CActScrollSpeed.cs ├── CActStageFailed.cs ├── CAct演奏AVI.cs ├── CAct演奏Combo共通.cs ├── CAct演奏ゲージ共通.cs ├── CLagLogger.cs ├── CStage演奏画面共通.cs └── Taiko │ ├── CActChara.cs │ ├── CActChipEffects.cs │ ├── CActDancer.cs │ ├── CActMob.cs │ ├── CActMtaiko.cs │ ├── CActRoll.cs │ ├── CActRunner.cs │ ├── CAct演奏Drumsゲームモード.cs │ ├── CAct演奏Drumsコンボ吹き出し.cs │ ├── CAct演奏DrumsチップファイアD.cs │ ├── CAct演奏Drumsレーン.cs │ ├── CAct演奏Drumsレーン太鼓.cs │ ├── CAct演奏Drums演奏終了演出.cs │ ├── CAct演奏Drums特訓モード.cs │ ├── CAct演奏Drums背景.cs │ ├── CAct演奏Drums連打キャラ.cs │ ├── CAct演奏Drums風船.cs │ ├── Dan_Cert.cs │ ├── FireWorks.cs │ ├── FlyingNotes.cs │ ├── GoGoSplash.cs │ ├── LaneFlash.cs │ ├── PuchiChara.cs │ ├── Rainbow.cs │ └── TaikoLaneFlash.cs ├── 08.Result ├── CActResultParameterPanel.cs ├── CActResultSongBar.cs └── CStageResult.cs ├── 09.Ending └── CStageEnding.cs ├── 10.ChangeSkin └── CStageChangeSkin.cs ├── 11.Maintenance └── CStageMaintenance.cs ├── CActFIFOBlack.cs ├── CActFIFOResult.cs ├── CActFIFOStart.cs └── CStage.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/ISSUE_TEMPLATE/bug-report-en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-jp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/ISSUE_TEMPLATE/bug-report-jp.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/ISSUE_TEMPLATE/enhancement-en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-jp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/ISSUE_TEMPLATE/enhancement-jp.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /BannedSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/BannedSymbols.txt -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /FDK19/FDK19.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/FDK19.csproj -------------------------------------------------------------------------------- /FDK19/mplus-1p-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/mplus-1p-medium.ttf -------------------------------------------------------------------------------- /FDK19/src/00.Common/CActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CActivity.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CCommon.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CConvert.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CCounter.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CFPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CFPS.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CJudgeTextEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CJudgeTextEncoding.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CTimer.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CTimerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CTimerBase.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CTraceLogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CTraceLogListener.cs -------------------------------------------------------------------------------- /FDK19/src/00.Common/CWebOpen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/00.Common/CWebOpen.cs -------------------------------------------------------------------------------- /FDK19/src/01.Framework/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/01.Framework/Device.cs -------------------------------------------------------------------------------- /FDK19/src/01.Framework/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/01.Framework/Game.cs -------------------------------------------------------------------------------- /FDK19/src/01.Framework/SDL/GameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/01.Framework/SDL/GameWindow.cs -------------------------------------------------------------------------------- /FDK19/src/01.Framework/SDL/MouseWheelEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/01.Framework/SDL/MouseWheelEvent.cs -------------------------------------------------------------------------------- /FDK19/src/01.Framework/SDL/WindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/01.Framework/SDL/WindowState.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/CInputJoystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/CInputJoystick.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/CInputKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/CInputKeyboard.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/CInputMIDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/CInputMIDI.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/CInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/CInputManager.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/CInputMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/CInputMouse.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/DeviceConstantConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/DeviceConstantConverter.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/EInputDeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/EInputDeviceType.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/IInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/IInputDevice.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/STInputEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/STInputEvent.cs -------------------------------------------------------------------------------- /FDK19/src/02.Input/SlimDXKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/02.Input/SlimDXKeys.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CAudioDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CAudioDecoder.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CBassLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CBassLibraryLoader.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSound.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSoundDeviceASIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSoundDeviceASIO.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSoundDeviceBASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSoundDeviceBASS.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSoundDeviceWASAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSoundDeviceWASAPI.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSoundManager.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/CSoundTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/CSoundTimer.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/ESoundDeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/ESoundDeviceType.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/ESoundGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/ESoundGroup.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/ExtensionMethods/BassMixExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/ExtensionMethods/BassMixExtensions.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/ISoundDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/ISoundDevice.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/LoudnessMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/LoudnessMetadata.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/LoudnessMetadataScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/LoudnessMetadataScanner.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/Lufs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/Lufs.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/SongGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/SongGainController.cs -------------------------------------------------------------------------------- /FDK19/src/03.Sound/SoundGroupLevelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/03.Sound/SoundGroupLevelController.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/CDecodedFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/CDecodedFrame.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/CFrameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/CFrameConverter.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/CTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/CTexture.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/CTextureCreateFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/CTextureCreateFailedException.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/CVideoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/CVideoDecoder.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/TextRenderer/CCachedFontRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/TextRenderer/CCachedFontRenderer.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/TextRenderer/CFontRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/TextRenderer/CFontRenderer.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/TextRenderer/CSkiaSharpTextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/TextRenderer/CSkiaSharpTextRenderer.cs -------------------------------------------------------------------------------- /FDK19/src/04.Graphic/TextRenderer/ITextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/FDK19/src/04.Graphic/TextRenderer/ITextRenderer.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | TJAPlayer3-f/Docs/Readme.md -------------------------------------------------------------------------------- /TJAPlayer3-f.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f.sln -------------------------------------------------------------------------------- /TJAPlayer3-f/Docs/AdditionalFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Docs/AdditionalFeatures.md -------------------------------------------------------------------------------- /TJAPlayer3-f/Docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Docs/Readme.md -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm/libbass.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm/libbass_fx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm/libbass_fx.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm/libbassmix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm/libbassmix.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm64/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm64/libbass.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm64/libbass_fx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm64/libbass_fx.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-arm64/libbassmix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-arm64/libbassmix.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x64/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x64/libbass.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x64/libbass_fx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x64/libbass_fx.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x64/libbassmix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x64/libbassmix.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x86/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x86/libbass.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x86/libbass_fx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x86/libbass_fx.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/linux-x86/libbassmix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/linux-x86/libbassmix.so -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/osx/libbass.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/osx/libbass.dylib -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/osx/libbass_fx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/osx/libbass_fx.dylib -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/osx/libbassmix.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/osx/libbassmix.dylib -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x64/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x64/bass.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x64/bass_fx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x64/bass_fx.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x64/bassasio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x64/bassasio.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x64/bassmix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x64/bassmix.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x64/basswasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x64/basswasapi.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x86/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x86/bass.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x86/bass_fx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x86/bass_fx.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x86/bassasio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x86/bassasio.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x86/bassmix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x86/bassmix.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Libs/win-x86/basswasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Libs/win-x86/basswasapi.dll -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/Katatsumuri.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/Katatsumuri.lrc -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/Katatsumuri.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/Katatsumuri.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/lrc_sample.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/Nijiiro_Dojo_sample/lrc_sample.tja -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/box.def: -------------------------------------------------------------------------------- 1 | #TITLE:SampleSongs 2 | #GENRE: -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/lrc_sample/DonguriKorokoro.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/lrc_sample/DonguriKorokoro.lrc -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/lrc_sample/DonguriKorokoro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/lrc_sample/DonguriKorokoro.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/lrc_sample/Katatsumuri.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/lrc_sample/Katatsumuri.lrc -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/lrc_sample/Katatsumuri.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/lrc_sample/Katatsumuri.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/Songs/SampleSongs/lrc_sample/lrc_sample.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/Songs/SampleSongs/lrc_sample/lrc_sample.tja -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/1P_NamePlate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/1P_NamePlate.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/ActiveBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/ActiveBar.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/InactiveBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/1_Title/InactiveBar.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2P_NamePlate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2P_NamePlate.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Arrow.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Cursor.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Enum_Song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/Enum_Song.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/ItemBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/ItemBox.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/KeyAssign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/2_Config/KeyAssign.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Auto.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_BackBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_BackBox.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Center.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Bar_Genre_8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Cursor_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Cursor_Left.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Cursor_Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Cursor_Right.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Difficulty.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Footer.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Frame_BackBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Frame_BackBox.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Frame_Score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Frame_Score.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/GenreText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/GenreText.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Header.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ItemNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ItemNumber.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ItemNumber_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ItemNumber_BG.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Level.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Lyric_Text_8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/PapaMama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/PapaMama.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/ScoreWindow_6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Score_Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/3_SongSelect/Score_Select.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/4.1_SongLoading_v2/Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/4.1_SongLoading_v2/Plate.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/4_SongLoading/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/4_SongLoading/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/4_SongLoading/Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/4_SongLoading/Plate.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Fire.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Rainbow.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/10_Effects/Roll/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Balloon.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Combo_1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Combo_1P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Combo_2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Combo_2P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/11_Balloon/Roll.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Expert.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Master.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Base_Normal.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Blue.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Red.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Expert.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Master.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Text_Normal.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/12_Lane/Yellow.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/13_Genre/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/16_Runner/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/16_Runner/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Number.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17.1_DanC_V2/Panel.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamRange.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamType.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamUnit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/ExamUnit.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Failed.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Clear.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Flush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Flush.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Reach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Gauge_Reach.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Number.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/17_DanC/Screen.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/18_Puchichara/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/18_Puchichara/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/18_Puchichara/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/18_Puchichara/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/19_Training/Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/19_Training/Down.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/10Combo/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Clear/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/GoGo/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/Normal/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/0/SoulIn/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/10Combo/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Clear/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/GoGo/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/20.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/21.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/22.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/23.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/24.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/25.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/26.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/27.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/28.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/29.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/Normal/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/10.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/11.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/12.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/13.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/14.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/15.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/16.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/17.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/18.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/1_Chara/1/SoulIn/19.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/1/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/2/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/3/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/4/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/2_Dancer/5/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/1P_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/1P_Frame.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/2P_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/2P_Frame.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Combo.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Combo_Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Combo_Big.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Don.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Don.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Ka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Ka.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/LevelDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/LevelDown.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/LevelUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/LevelUp.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score_1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score_1P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score_2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/6_Taiko/Score_2P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P_Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P_Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/1P_Line.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P_Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P_Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/2P_Line.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/DanC/1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/DanC/1P.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Fire.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/5.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/6.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/7.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/8.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Rainbow/9.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/7_Gauge/Soul.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/8_Footer/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/8_Footer/0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_L_4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_R_4.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Clear_Text.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_L_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_R_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Failed_Text.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_2.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/9_End/Fan_3.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Bar.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Bar_Branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Bar_Branch.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Judge.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Judge_Meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Judge_Meter.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes_Arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes_Arm.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/Notes_White.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/SENotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/5_Game/SENotes.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Gauge.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/GaugeBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/GaugeBack.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/GaugeBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/GaugeBase.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Header.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Mountain_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Mountain_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Mountain_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Mountain_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Number.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Panel_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Panel_0.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Panel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6.1_Result_v2/Panel_1.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Background.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Dan.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/FadeIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/FadeIn.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Gauge.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Gauge_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Gauge_Base.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Header.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Judge.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Number.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Panel.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Score_Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Score_Number.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Score_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/6_Result/Score_Text.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/7_Exit/Curtain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/7_Exit/Curtain.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/7_Exit/Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/7_Exit/Text.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Console_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Console_Font.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Console_Font_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Console_Font_Small.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Crown.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/DanC_Crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/DanC_Crown.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Difficulty_Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Difficulty_Icons.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Enum_Song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Enum_Song.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Menu_Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Menu_Highlight.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Menu_Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Menu_Title.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Network_Connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Network_Connection.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Overlay.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Graphics/Scanning_Loudness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Graphics/Scanning_Loudness.png -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/SkinConfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/SkinConfig.toml -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/SortConfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/SortConfig.toml -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Cancel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Cancel.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Change.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Change.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Clear.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Config BGM.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Config BGM.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Dan/Failed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Dan/Failed.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Dan/Section.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Dan/Section.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Dan_Select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Dan_Select.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Decide.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Decide.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/DifficultySelect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/DifficultySelect.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Donder Full Combo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Donder Full Combo.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Failed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Failed.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Full combo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Full combo.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Move.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Move.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/NewRecord.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/NewRecord.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Now loading.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Now loading.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/ResultIn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/ResultIn.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Rotate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Rotate.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Scroll.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Scroll.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Setup BGM.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Setup BGM.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Skip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Skip.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/SongDecide.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/SongDecide.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/Adlib.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/Adlib.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/dong.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/ka.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/0/ka.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/1/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/1/dong.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/1/ka.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/1/ka.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/2/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/2/dong.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/2/ka.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Taiko/2/ka.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/Timbre.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/Timbre.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/System/Honkehuu/Sounds/balloon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/System/Honkehuu/Sounds/balloon.ogg -------------------------------------------------------------------------------- /TJAPlayer3-f/TJAPlayer3-f.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/TJAPlayer3-f.csproj -------------------------------------------------------------------------------- /TJAPlayer3-f/TJAPlayer3-f.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/TJAPlayer3-f.ico -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/BASS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/BASS.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/DOBON.NET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/DOBON.NET.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/FFmpeg.AutoGen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/FFmpeg.AutoGen.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/ManagedBass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/ManagedBass.md -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/Open-Taiko-Chart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/Open-Taiko-Chart.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/ReadJEnc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/ReadJEnc.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/SDL3-CS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/SDL3-CS.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/SDL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/SDL3.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/SkiaSharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/SkiaSharp.md -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/Tomlyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/Tomlyn.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/discord-rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/discord-rpc -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/discord-rpc-csharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/discord-rpc-csharp.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/dotnet.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/dotnet.TXT -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/dtxmania.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/dtxmania.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/managed-midi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/managed-midi.txt -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/mplus-fonts_E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/mplus-fonts_E -------------------------------------------------------------------------------- /TJAPlayer3-f/ThirdPartyLicenses/mplus-fonts_J: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/ThirdPartyLicenses/mplus-fonts_J -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/CConfigIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/CConfigIni.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/CConfigToml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/CConfigToml.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/CPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/CPad.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/CSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/CSkin.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/ConfigIniToSongGainControllerBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/ConfigIniToSongGainControllerBinder.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/C定数.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/C定数.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/C文字コンソール.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/C文字コンソール.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/DiscordRichPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/DiscordRichPresence.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/KeyboardSoundGroupLevelControlHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/KeyboardSoundGroupLevelControlHandler.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/Program.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Common/TJAPlayer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Common/TJAPlayer3.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Items/CItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Items/CItemBase.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Items/CItemInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Items/CItemInteger.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Items/CItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Items/CItemList.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Items/CItemToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Items/CItemToggle.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CBoxDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CBoxDef.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CDTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CDTX.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CDTXCompanionFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CDTXCompanionFileFinder.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CDTXStyleExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CDTXStyleExtractor.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CScoreJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CScoreJson.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/CSongsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/CSongsManager.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/ChartLoader/ChartLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/ChartLoader/ChartLoader.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/Cスコア.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/Cスコア.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノード.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノード.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノードComparers/ComparerChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノードComparers/ComparerChain.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerGenre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerGenre.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerタイトル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerタイトル.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerノード種別.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparerノード種別.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparer絶対パス.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/C曲リストノードComparers/C曲リストノードComparer絶対パス.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/Dan-C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/Dan-C.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Songs/GaugeIncreaseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Songs/GaugeIncreaseMode.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/01.StartUp/CStageStartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/01.StartUp/CStageStartUp.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/01.StartUp/TextureLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/01.StartUp/TextureLoader.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/02.Title/CActEnumSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/02.Title/CActEnumSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/02.Title/CActScanningLoudness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/02.Title/CActScanningLoudness.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/02.Title/CEnumSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/02.Title/CEnumSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/02.Title/CStageTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/02.Title/CStageTitle.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/04.Config/CActConfigKeyAssign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/04.Config/CActConfigKeyAssign.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/04.Config/CActConfigList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/04.Config/CActConfigList.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/04.Config/CStageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/04.Config/CStageConfig.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectChangeSE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectChangeSE.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectHistoryPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectHistoryPanel.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPlayOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPlayOption.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPopupMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPopupMenu.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPresound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelectPresound.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSelect曲リスト.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSelect曲リスト.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CActSortSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CActSortSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/05.SongSelect/CStage選曲.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/05.SongSelect/CStage選曲.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/06.SongLoading/CStageSongLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/06.SongLoading/CStageSongLoading.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActComboVoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActComboVoice.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActJudgeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActJudgeString.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActLyric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActLyric.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActPanel.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActPauseMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActPauseMenu.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActPlayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActPlayInfo.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActScore.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActScrollSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActScrollSpeed.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CActStageFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CActStageFailed.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CAct演奏AVI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CAct演奏AVI.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CAct演奏Combo共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CAct演奏Combo共通.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CAct演奏ゲージ共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CAct演奏ゲージ共通.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CLagLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CLagLogger.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/CStage演奏画面共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/CStage演奏画面共通.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActChara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActChara.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActChipEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActChipEffects.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActDancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActDancer.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActMob.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActMtaiko.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActMtaiko.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActRoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActRoll.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CActRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CActRunner.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsゲームモード.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsゲームモード.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsコンボ吹き出し.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsコンボ吹き出し.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏DrumsチップファイアD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏DrumsチップファイアD.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsレーン.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsレーン.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsレーン太鼓.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drumsレーン太鼓.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums演奏終了演出.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums演奏終了演出.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums特訓モード.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums特訓モード.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums背景.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums背景.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums連打キャラ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums連打キャラ.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums風船.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/CAct演奏Drums風船.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/Dan_Cert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/Dan_Cert.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/FireWorks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/FireWorks.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/FlyingNotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/FlyingNotes.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/GoGoSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/GoGoSplash.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/LaneFlash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/LaneFlash.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/PuchiChara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/PuchiChara.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/Rainbow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/Rainbow.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/07.Game/Taiko/TaikoLaneFlash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/07.Game/Taiko/TaikoLaneFlash.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/08.Result/CActResultParameterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/08.Result/CActResultParameterPanel.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/08.Result/CActResultSongBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/08.Result/CActResultSongBar.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/08.Result/CStageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/08.Result/CStageResult.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/09.Ending/CStageEnding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/09.Ending/CStageEnding.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/10.ChangeSkin/CStageChangeSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/10.ChangeSkin/CStageChangeSkin.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/11.Maintenance/CStageMaintenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/11.Maintenance/CStageMaintenance.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/CActFIFOBlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/CActFIFOBlack.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/CActFIFOResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/CActFIFOResult.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/CActFIFOStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/CActFIFOStart.cs -------------------------------------------------------------------------------- /TJAPlayer3-f/src/Stages/CStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Ojii/TJAPlayer3-f/HEAD/TJAPlayer3-f/src/Stages/CStage.cs --------------------------------------------------------------------------------