├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── release-drafter.yml └── workflows │ └── release-drafter.yml ├── .gitignore ├── FDK19 ├── FDK19.csproj ├── FDK19.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── コード │ ├── 00.共通 │ ├── CActivity.cs │ ├── CCounter.cs │ ├── CFPS.cs │ ├── COS.cs │ ├── CPowerManagement.cs │ ├── CTimer.cs │ ├── CTimerBase.cs │ ├── CTraceLogListener.cs │ ├── CWin32.cs │ ├── C共通.cs │ ├── C変換.cs │ ├── ExtensionMethods │ │ ├── DoubleExtensions.cs │ │ └── Int32Extensions.cs │ └── StringExtensions.cs │ ├── 01.フレームワーク │ ├── Core │ │ ├── Game.cs │ │ ├── GameClock.cs │ │ ├── GameTime.cs │ │ ├── GameWindow.cs │ │ └── GameWindowSize.cs │ ├── DeviceSettings │ │ ├── ConversionMethods.cs │ │ ├── DeviceSettings.cs │ │ └── Direct3D9Settings.cs │ ├── Enumeration │ │ └── Enumeration9.cs │ ├── Rendering │ │ ├── DeviceCache.cs │ │ ├── DeviceCreationException.cs │ │ ├── GraphicsDeviceManager.cs │ │ └── NoCompatibleDevicesException.cs │ └── Win32 │ │ ├── NativeMethods.cs │ │ ├── NativeStructures.cs │ │ └── WindowConstants.cs │ ├── 02.入力 │ ├── CInputJoystick.cs │ ├── CInputKeyboard.cs │ ├── CInputMIDI.cs │ ├── CInputMouse.cs │ ├── CInput管理.cs │ ├── DeviceConstantConverter.cs │ ├── E入力デバイス種別.cs │ ├── IInputDevice.cs │ └── STInputEvent.cs │ ├── 03.サウンド │ ├── CSound.cs │ ├── CSoundDeviceASIO.cs │ ├── CSoundDeviceDirectSound.cs │ ├── CSoundDeviceWASAPI.cs │ ├── CSoundTimer.cs │ ├── Cmp3.cs │ ├── Cogg.cs │ ├── Cxa.cs │ ├── ESoundDeviceType.cs │ ├── ESoundGroup.cs │ ├── ISoundDevice.cs │ ├── LoudnessMetadata.cs │ ├── LoudnessMetadataScanner.cs │ ├── Lufs.cs │ ├── SongGainController.cs │ ├── SoundDecoder.cs │ └── SoundGroupLevelController.cs │ ├── 04.グラフィック │ ├── BitmapUtil.cs │ ├── CAvi.cs │ ├── CTexture.cs │ ├── CTextureAutofold.cs │ ├── CTextureCreateFailedException.cs │ ├── HorizontalReferencePoint.cs │ ├── VerticalReferencePoint.cs │ └── 頂点フォーマット(Vertex) │ │ ├── PositionColoredTexturedVertex.cs │ │ └── TransformedColoredTexturedVertex.cs │ └── 05.DirectShow │ ├── CDStoWAVFileImage.cs │ ├── CDirectShow.cs │ └── MemoryRenderer.cs ├── GitVersion.yml ├── LICENSE ├── README.md ├── TJAPlayer3.Tests ├── ErrorReporting │ └── ErrorReporterTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Songs │ ├── CStrジャンルtoNumTests.cs │ └── CStrジャンルtoStrTests.cs ├── TJAPlayer3.Tests.csproj ├── Updates │ └── UpdateCheckerTests.cs ├── app.config ├── packages.config └── コード │ └── スコア、曲 │ ├── CDTXStyleExtractorTests.cs │ ├── approved │ ├── 205_example.0.tja │ ├── 205_example.1.tja │ ├── 205_example.2.tja │ ├── 205_example_but_with_duplicate_sheets.0.tja │ ├── 205_example_but_with_duplicate_sheets.1.tja │ ├── 205_example_but_with_duplicate_sheets.2.tja │ ├── expected_case_1_and_2.0.tja │ ├── expected_case_1_and_2.1.tja │ ├── expected_case_1_and_2.2.tja │ ├── expected_case_1_only.0.tja │ ├── expected_case_1_only.1.tja │ ├── expected_case_1_only.2.tja │ ├── expected_case_2_only.0.tja │ ├── expected_case_2_only.1.tja │ ├── expected_case_2_only.2.tja │ ├── expected_case_couple_only.0.tja │ ├── expected_case_couple_only.1.tja │ ├── expected_case_couple_only.2.tja │ ├── expected_case_double_only.0.tja │ ├── expected_case_double_only.1.tja │ ├── expected_case_double_only.2.tja │ ├── expected_case_double_only_but_with_duplicate_sheets.0.tja │ ├── expected_case_double_only_but_with_duplicate_sheets.1.tja │ ├── expected_case_double_only_but_with_duplicate_sheets.2.tja │ ├── expected_case_single_and_couple.0.tja │ ├── expected_case_single_and_couple.1.tja │ ├── expected_case_single_and_couple.2.tja │ ├── expected_case_single_and_double.0.tja │ ├── expected_case_single_and_double.1.tja │ ├── expected_case_single_and_double.2.tja │ ├── expected_case_single_and_double_but_with_duplicate_sheets.0.tja │ ├── expected_case_single_and_double_but_with_duplicate_sheets.1.tja │ ├── expected_case_single_and_double_but_with_duplicate_sheets.2.tja │ ├── expected_case_single_only.0.tja │ ├── expected_case_single_only.1.tja │ ├── expected_case_single_only.2.tja │ ├── expected_case_single_only_whole_file_due_to_no_course.0.tja │ ├── expected_case_single_only_whole_file_due_to_no_course.1.tja │ ├── expected_case_single_only_whole_file_due_to_no_course.2.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.0.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.1.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.2.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.0.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.1.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.2.tja │ ├── kitchen_sink_couple_only.0.tja │ ├── kitchen_sink_couple_only.1.tja │ ├── kitchen_sink_couple_only.2.tja │ ├── kitchen_sink_double_only.0.tja │ ├── kitchen_sink_double_only.1.tja │ ├── kitchen_sink_double_only.2.tja │ ├── kitchen_sink_single_and_couple.0.tja │ ├── kitchen_sink_single_and_couple.1.tja │ ├── kitchen_sink_single_and_couple.2.tja │ ├── kitchen_sink_single_and_double.0.tja │ ├── kitchen_sink_single_and_double.1.tja │ ├── kitchen_sink_single_and_double.2.tja │ ├── kitchen_sink_single_only.0.tja │ ├── kitchen_sink_single_only.1.tja │ ├── kitchen_sink_single_only.2.tja │ ├── mixed_case_double_only.0.tja │ ├── mixed_case_double_only.1.tja │ ├── mixed_case_double_only.2.tja │ ├── mixed_case_single_and_double.0.tja │ ├── mixed_case_single_and_double.1.tja │ ├── mixed_case_single_and_double.2.tja │ ├── mixed_case_single_only.0.tja │ ├── mixed_case_single_only.1.tja │ ├── mixed_case_single_only.2.tja │ ├── no_course.0.tja │ ├── no_course.1.tja │ ├── no_course.2.tja │ ├── no_style.0.tja │ ├── no_style.1.tja │ ├── no_style.2.tja │ ├── no_style_but_with_duplicate_sheets.0.tja │ ├── no_style_but_with_duplicate_sheets.1.tja │ ├── no_style_but_with_duplicate_sheets.2.tja │ ├── trailing_characters_double_only.0.tja │ ├── trailing_characters_double_only.1.tja │ ├── trailing_characters_double_only.2.tja │ ├── trailing_characters_single_and_double.0.tja │ ├── trailing_characters_single_and_double.1.tja │ ├── trailing_characters_single_and_double.2.tja │ ├── trailing_characters_single_only.0.tja │ ├── trailing_characters_single_only.1.tja │ └── trailing_characters_single_only.2.tja │ └── input │ ├── 205_example.tja │ ├── 205_example_but_with_duplicate_sheets.tja │ ├── expected_case_1_and_2.tja │ ├── expected_case_1_only.tja │ ├── expected_case_2_only.tja │ ├── expected_case_couple_only.tja │ ├── expected_case_double_only.tja │ ├── expected_case_double_only_but_with_duplicate_sheets.tja │ ├── expected_case_single_and_couple.tja │ ├── expected_case_single_and_double.tja │ ├── expected_case_single_and_double_but_with_duplicate_sheets.tja │ ├── expected_case_single_only.tja │ ├── expected_case_single_only_whole_file_due_to_no_course.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.tja │ ├── expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.tja │ ├── kitchen_sink_couple_only.tja │ ├── kitchen_sink_double_only.tja │ ├── kitchen_sink_single_and_couple.tja │ ├── kitchen_sink_single_and_double.tja │ ├── kitchen_sink_single_only.tja │ ├── mixed_case_double_only.tja │ ├── mixed_case_single_and_double.tja │ ├── mixed_case_single_only.tja │ ├── no_course.tja │ ├── no_style.tja │ ├── no_style_but_with_duplicate_sheets.tja │ ├── trailing_characters_double_only.tja │ ├── trailing_characters_single_and_double.tja │ └── trailing_characters_single_only.tja ├── TJAPlayer3.sln ├── TJAPlayer3 ├── Animations │ ├── Animator.cs │ ├── FadeOut.cs │ └── IAnimatable.cs ├── Common │ ├── CActFlushGPU.cs │ ├── CConfigIni.cs │ ├── CDTXVersion.cs │ ├── CPad.cs │ ├── CPrivateFastFont.cs │ ├── CPrivateFont.cs │ ├── CSkin.cs │ ├── ConfigIniToSongGainControllerBinder.cs │ ├── ConfigIniToSoundGroupLevelControllerBinder.cs │ ├── C定数.cs │ ├── C文字コンソール.cs │ ├── Discord.cs │ ├── FontUtilities.cs │ ├── KeyboardSoundGroupLevelControlHandler.cs │ ├── PreciseStringMeasurement │ │ ├── CPreciseStringMeasurer.cs │ │ ├── DirectBitmap.cs │ │ └── MeasureStringPreciselyCacheKey.cs │ ├── Program.cs │ └── TJAPlayer3.cs ├── ErrorReporting │ └── ErrorReporter.cs ├── Items │ ├── CItemBase.cs │ ├── CItemInteger.cs │ ├── CItemList.cs │ └── CItemToggle.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Discord.Designer.cs │ ├── Discord.resx │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── TJAPlayer3.ico ├── Songs │ ├── CBoxDef.cs │ ├── CDTX.cs │ ├── CDTXCompanionFileFinder.cs │ ├── CDTXStyleExtractor.cs │ ├── CScoreIni.cs │ ├── CSong管理.cs │ ├── CStrジャンル.cs │ ├── CStrジャンルtoNum.cs │ ├── CStrジャンルtoStr.cs │ ├── Cスコア.cs │ ├── C曲リストノード.cs │ ├── C曲リストノードComparers │ │ ├── ComparerChain.cs │ │ ├── C曲リストノードComparerAC15.cs │ │ ├── C曲リストノードComparerAC8_14.cs │ │ ├── C曲リストノードComparerPlaylistIndex.cs │ │ ├── C曲リストノードComparerRating.cs │ │ ├── C曲リストノードComparerタイトル.cs │ │ ├── C曲リストノードComparerノード種別.cs │ │ └── C曲リストノードComparer絶対パス.cs │ ├── Dan-C.cs │ ├── EジャンルAC15SortOrder.cs │ └── GaugeIncreaseMode.cs ├── Stages │ ├── 01.StartUp │ │ ├── CStage起動.cs │ │ └── TextureLoader.cs │ ├── 02.Title │ │ ├── CActEnumSongs.cs │ │ ├── CActScanningLoudness.cs │ │ ├── CEnumSongs.cs │ │ └── CStageタイトル.cs │ ├── 04.Config │ │ ├── CActConfigKeyAssign.cs │ │ ├── CActConfigList.cs │ │ └── CStageコンフィグ.cs │ ├── 05.SongSelect │ │ ├── CActSelectInformation.cs │ │ ├── CActSelectPopupMenu.cs │ │ ├── CActSelectPreimageパネル.cs │ │ ├── CActSelectPresound.cs │ │ ├── CActSelectQuickConfig.cs │ │ ├── CActSelectShowCurrentPosition.cs │ │ ├── CActSelectステータスパネル.cs │ │ ├── CActSelect曲リスト.cs │ │ ├── CActSelect演奏履歴パネル.cs │ │ ├── CActSelect難易度選択画面.cs │ │ ├── CActSortSongs.cs │ │ ├── CStage選曲.cs │ │ ├── SongRating.cs │ │ ├── SongRatingControlHandler.cs │ │ └── SongRatingController.cs │ ├── 06.SongLoading │ │ ├── CStage曲読み込み.cs │ │ └── FastRender.cs │ ├── 07.Game │ │ ├── CAct演奏AVI.cs │ │ ├── CAct演奏Combo共通.cs │ │ ├── CAct演奏Combo音声.cs │ │ ├── CAct演奏PauseMenu.cs │ │ ├── CAct演奏ゲージ共通.cs │ │ ├── CAct演奏スクロール速度.cs │ │ ├── CAct演奏スコア共通.cs │ │ ├── CAct演奏ステージ失敗.cs │ │ ├── CAct演奏ステータスパネル共通.cs │ │ ├── CAct演奏パネル文字列.cs │ │ ├── CAct演奏判定文字列共通.cs │ │ ├── CAct演奏演奏情報.cs │ │ ├── CInvisibleChip.cs │ │ ├── CLagLogger.cs │ │ ├── CStage演奏画面共通.cs │ │ ├── C演奏判定ライン座標共通.cs │ │ └── Taiko │ │ │ ├── CAct演奏DrumsDancer.cs │ │ │ ├── CAct演奏DrumsFooter.cs │ │ │ ├── CAct演奏DrumsMob.cs │ │ │ ├── CAct演奏DrumsMtaiko.cs │ │ │ ├── CAct演奏DrumsRunner.cs │ │ │ ├── CAct演奏Drumsキャラクター.cs │ │ │ ├── CAct演奏Drumsゲージ.cs │ │ │ ├── CAct演奏Drumsゲームモード.cs │ │ │ ├── CAct演奏Drumsコンボ吹き出し.cs │ │ │ ├── CAct演奏Drumsスコア.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 │ │ │ ├── CAct演奏Drums風船.cs │ │ │ ├── CStage演奏ドラム画面.cs │ │ │ ├── Dan_Cert.cs │ │ │ ├── FireWorks.cs │ │ │ ├── FlyingNotes.cs │ │ │ ├── GoGoSplash.cs │ │ │ ├── LaneFlash.cs │ │ │ ├── PuchiChara.cs │ │ │ ├── Rainbow.cs │ │ │ └── TaikoLaneFlash.cs │ ├── 08.Result │ │ ├── CActResultImage.cs │ │ ├── CActResultParameterPanel.cs │ │ ├── CActResultRank.cs │ │ ├── CActResultSongBar.cs │ │ └── CStage結果.cs │ ├── 09.Ending │ │ └── CStage終了.cs │ ├── 10.ChangeSkin │ │ └── CStageChangeSkin.cs │ ├── CActDFPFont.cs │ ├── CActFIFOBlack.cs │ ├── CActFIFOResult.cs │ ├── CActFIFOStart.cs │ ├── CActFIFOWhite.cs │ ├── CActオプションパネル.cs │ └── CStage.cs ├── TJAPlayer3.csproj ├── TJAPlayer3.csproj.user ├── TJAPlayer3.manifest ├── Updates │ └── UpdateChecker.cs ├── app.config └── packages.config ├── Test ├── FDK.MemoryRenderer.dll ├── Licenses │ ├── BASS │ │ ├── LICENSE(BASS.Net).rtf │ │ └── license(BASS).txt │ ├── CSharpTest.Net.Collections.txt │ ├── DirectShowLib.txt │ ├── IPA_Font_License_Agreement_v1.0.txt │ ├── SlimDX │ │ ├── CodeLicense.txt │ │ └── MediaLicense.txt │ ├── discord-rpc │ ├── dtxmania.txt │ ├── libogg_libvorbis.txt │ └── xadec.txt ├── System │ ├── .gitignore │ └── SimpleStyle │ │ ├── Graphics │ │ ├── 1_Title │ │ │ ├── Background.png │ │ │ ├── Background.psd │ │ │ ├── Menu.png │ │ │ └── Menu.psd │ │ ├── 2_Config │ │ │ ├── Arrow.png │ │ │ ├── Arrow.psd │ │ │ ├── Background.png │ │ │ ├── Background.psd │ │ │ ├── Cursor.png │ │ │ ├── Enum_Song.png │ │ │ ├── Font.png │ │ │ ├── Font_Bold.png │ │ │ ├── ItemBox.png │ │ │ ├── ItemBox.psd │ │ │ ├── KeyAssign.png │ │ │ └── KeyAssign.psd │ │ ├── 3_SongSelect │ │ │ ├── Auto.png │ │ │ ├── Auto.psd │ │ │ ├── Background.png │ │ │ ├── Background.psd │ │ │ ├── Bar_Center.png │ │ │ ├── Bar_Center.psd │ │ │ ├── Bar_Genre_0.png │ │ │ ├── Bar_Genre_0.psd │ │ │ ├── Bar_Genre_1.png │ │ │ ├── Bar_Genre_1.psd │ │ │ ├── Bar_Genre_2.png │ │ │ ├── Bar_Genre_2.psd │ │ │ ├── Bar_Genre_3.png │ │ │ ├── Bar_Genre_3.psd │ │ │ ├── Bar_Genre_4.png │ │ │ ├── Bar_Genre_4.psd │ │ │ ├── Bar_Genre_5.png │ │ │ ├── Bar_Genre_5.psd │ │ │ ├── Bar_Genre_6.png │ │ │ ├── Bar_Genre_6.psd │ │ │ ├── Bar_Genre_7.png │ │ │ ├── Bar_Genre_7.psd │ │ │ ├── Bar_Genre_8.png │ │ │ ├── Bar_Genre_8.psd │ │ │ ├── Branch.png │ │ │ ├── Branch.psd │ │ │ ├── Branch_Text.png │ │ │ ├── Branch_Text.psd │ │ │ ├── Cursor_Left.png │ │ │ ├── Cursor_Left.psd │ │ │ ├── Cursor_Right.png │ │ │ ├── Cursor_Right.psd │ │ │ ├── Difficulty.png │ │ │ ├── Difficulty.psd │ │ │ ├── Footer.png │ │ │ ├── Footer.psd │ │ │ ├── Frame_Score.png │ │ │ ├── Frame_Score.psd │ │ │ ├── GenreBackground_0.png │ │ │ ├── GenreBackground_0.psd │ │ │ ├── GenreBackground_1.png │ │ │ ├── GenreBackground_1.psd │ │ │ ├── GenreBackground_2.png │ │ │ ├── GenreBackground_2.psd │ │ │ ├── GenreBackground_3.png │ │ │ ├── GenreBackground_3.psd │ │ │ ├── GenreBackground_4.png │ │ │ ├── GenreBackground_4.psd │ │ │ ├── GenreBackground_5.png │ │ │ ├── GenreBackground_5.psd │ │ │ ├── GenreBackground_6.png │ │ │ ├── GenreBackground_6.psd │ │ │ ├── GenreBackground_7.png │ │ │ ├── GenreBackground_7.psd │ │ │ ├── GenreBackground_8.png │ │ │ ├── GenreBackground_8.psd │ │ │ ├── GenreText.png │ │ │ ├── GenreText.psd │ │ │ ├── Header.png │ │ │ ├── Header.psd │ │ │ ├── Level.png │ │ │ ├── Level.psd │ │ │ ├── Rating.png │ │ │ ├── Rating.svg │ │ │ ├── ScoreWindow_0.png │ │ │ ├── ScoreWindow_0.psd │ │ │ ├── ScoreWindow_1.png │ │ │ ├── ScoreWindow_1.psd │ │ │ ├── ScoreWindow_2.png │ │ │ ├── ScoreWindow_2.psd │ │ │ ├── ScoreWindow_3.png │ │ │ ├── ScoreWindow_3.psd │ │ │ ├── ScoreWindow_4.png │ │ │ ├── ScoreWindow_4.psd │ │ │ ├── ScoreWindow_5.png │ │ │ ├── ScoreWindow_5.psd │ │ │ ├── ScoreWindow_6.png │ │ │ ├── ScoreWindow_6.psd │ │ │ ├── ScoreWindow_Text.png │ │ │ ├── ScoreWindow_Text.psd │ │ │ ├── Score_Select.png │ │ │ └── Score_Select.psd │ │ ├── 4_SongLoading │ │ │ ├── Background.png │ │ │ ├── FadeIn.png │ │ │ ├── FadeOut.png │ │ │ ├── Plate.png │ │ │ └── Plate.psd │ │ ├── 5_Game │ │ │ ├── 10_Effects │ │ │ │ ├── Fire.png │ │ │ │ ├── Fire.psd │ │ │ │ ├── GoGoSplash.aep │ │ │ │ ├── GoGoSplash.png │ │ │ │ ├── Hit │ │ │ │ │ ├── Explosion.png │ │ │ │ │ ├── Explosion_Big.png │ │ │ │ │ ├── FireWorks.aep │ │ │ │ │ ├── FireWorks.png │ │ │ │ │ └── FireWorks_1P.psd │ │ │ │ ├── Rainbow.png │ │ │ │ └── Roll │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 0.psd │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ ├── 11_Balloon │ │ │ │ ├── Balloon.png │ │ │ │ ├── Balloon.psd │ │ │ │ ├── Breaking_0.png │ │ │ │ ├── Breaking_1.png │ │ │ │ ├── Breaking_2.png │ │ │ │ ├── Breaking_3.png │ │ │ │ ├── Breaking_4.png │ │ │ │ ├── Breaking_5.png │ │ │ │ ├── Combo_1P.png │ │ │ │ ├── Combo_1P.psd │ │ │ │ ├── Combo_2P.png │ │ │ │ ├── Number_Combo.png │ │ │ │ ├── Number_Combo.psd │ │ │ │ ├── Number_Roll.png │ │ │ │ ├── Number_Roll.psd │ │ │ │ ├── Roll.png │ │ │ │ └── Roll.psd │ │ │ ├── 12_Lane │ │ │ │ ├── Background_GoGo.png │ │ │ │ ├── Background_GoGo.psd │ │ │ │ ├── Background_Main.png │ │ │ │ ├── Background_Sub.png │ │ │ │ ├── Base_Expert.png │ │ │ │ ├── Base_Expert.psd │ │ │ │ ├── Base_Master.png │ │ │ │ ├── Base_Master.psd │ │ │ │ ├── Base_Normal.png │ │ │ │ ├── Blue.png │ │ │ │ ├── Red.png │ │ │ │ ├── Text_Expert.png │ │ │ │ ├── Text_Master.png │ │ │ │ ├── Text_Normal.png │ │ │ │ └── Yellow.png │ │ │ ├── 13_GENRE │ │ │ │ ├── Anime.png │ │ │ │ ├── Anime.psd │ │ │ │ ├── Child.png │ │ │ │ ├── Classic.png │ │ │ │ ├── Game.png │ │ │ │ ├── J-POP.png │ │ │ │ ├── Namco.png │ │ │ │ ├── Variety.png │ │ │ │ └── Vocaloid.png │ │ │ ├── 14_GameMode │ │ │ │ ├── Timer_Frame.png │ │ │ │ └── Timer_Tick.png │ │ │ ├── 16_Runner │ │ │ │ ├── 0.png │ │ │ │ └── final.psd │ │ │ ├── 17_DanC │ │ │ │ ├── Background.png │ │ │ │ ├── Background.psd │ │ │ │ ├── Base.png │ │ │ │ ├── ExamRange.png │ │ │ │ ├── ExamRange.psd │ │ │ │ ├── ExamType.png │ │ │ │ ├── ExamType.psd │ │ │ │ ├── ExamUnit.png │ │ │ │ ├── ExamUnit.psd │ │ │ │ ├── Failed.png │ │ │ │ ├── Failed.psd │ │ │ │ ├── Gauge_Clear.png │ │ │ │ ├── Gauge_Flush.png │ │ │ │ ├── Gauge_Normal.png │ │ │ │ ├── Gauge_Reach.png │ │ │ │ ├── Number.png │ │ │ │ ├── Number.psd │ │ │ │ ├── Screen.png │ │ │ │ └── Screen.psd │ │ │ ├── 5_Background │ │ │ │ └── 0 │ │ │ │ │ └── Background.png │ │ │ ├── 6_Taiko │ │ │ │ ├── 1P_Background.png │ │ │ │ ├── 1P_Background.psd │ │ │ │ ├── 1P_Frame.png │ │ │ │ ├── 2P_Background.png │ │ │ │ ├── 2P_Background.psd │ │ │ │ ├── 2P_Frame.png │ │ │ │ ├── Base.png │ │ │ │ ├── Base.psd │ │ │ │ ├── Combo.png │ │ │ │ ├── Combo.psd │ │ │ │ ├── ComboText.psd │ │ │ │ ├── Combo_Big.png │ │ │ │ ├── Combo_Big.psd │ │ │ │ ├── Combo_Effect.png │ │ │ │ ├── Combo_Effect.psd │ │ │ │ ├── Combo_Text.png │ │ │ │ ├── Combo_Text.psd │ │ │ │ ├── Don.png │ │ │ │ ├── Ka.png │ │ │ │ ├── LevelDown.png │ │ │ │ ├── LevelDown.psd │ │ │ │ ├── LevelUp.png │ │ │ │ ├── LevelUp.psd │ │ │ │ ├── Score.png │ │ │ │ ├── Score.psd │ │ │ │ ├── Score_1P.png │ │ │ │ └── Score_2P.png │ │ │ ├── 7_Gauge │ │ │ │ ├── 1P.png │ │ │ │ ├── 1P.psd │ │ │ │ ├── 1P_Base.png │ │ │ │ ├── 1P_Base.psd │ │ │ │ ├── 1P_Base_ExHard.png │ │ │ │ ├── 1P_Base_Hard.png │ │ │ │ ├── 1P_ExHard.png │ │ │ │ ├── 1P_Explosion.png │ │ │ │ ├── 1P_Explosion.psd │ │ │ │ ├── 1P_Hard.png │ │ │ │ ├── 1P_Line.png │ │ │ │ ├── 1P_Line.psd │ │ │ │ ├── 1P_Line_Hard.png │ │ │ │ ├── 2P.png │ │ │ │ ├── 2P_Base.png │ │ │ │ ├── 2P_Base_ExHard.png │ │ │ │ ├── 2P_Base_Hard.png │ │ │ │ ├── 2P_ExHard.png │ │ │ │ ├── 2P_Explosion.png │ │ │ │ ├── 2P_Explosion.psd │ │ │ │ ├── 2P_Hard.png │ │ │ │ ├── 2P_Line.png │ │ │ │ ├── 2P_Line_Hard.png │ │ │ │ ├── Fire.png │ │ │ │ ├── Fire.psd │ │ │ │ ├── Rainbow │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 0.psd │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── Soul.png │ │ │ │ └── Soul.psd │ │ │ ├── Bar.png │ │ │ ├── Bar_Branch.png │ │ │ ├── Judge.png │ │ │ ├── Judge.psd │ │ │ ├── Judge_Meter.png │ │ │ ├── Judge_Meter.psd │ │ │ ├── Notes.png │ │ │ ├── Notes.psd │ │ │ ├── Notes_Arm.png │ │ │ ├── SENotes.png │ │ │ └── SENotes.psd │ │ ├── 6_Result │ │ │ ├── Background.png │ │ │ ├── Dan.png │ │ │ ├── Dan.psd │ │ │ ├── FadeIn.png │ │ │ ├── FadeIn.psd │ │ │ ├── Gauge.png │ │ │ ├── Gauge.psd │ │ │ ├── Gauge_Base.png │ │ │ ├── Gauge_Base.psd │ │ │ ├── Gauge_Base_ExHard.png │ │ │ ├── Gauge_Base_Hard.png │ │ │ ├── Gauge_ExHard.png │ │ │ ├── Gauge_Hard.png │ │ │ ├── Header.png │ │ │ ├── Header.psd │ │ │ ├── Judge.png │ │ │ ├── Judge.psd │ │ │ ├── Number.png │ │ │ ├── Number.psd │ │ │ ├── Panel.png │ │ │ ├── Panel.psd │ │ │ ├── Score_Number.png │ │ │ ├── Score_Text.png │ │ │ └── Score_Text.psd │ │ ├── Console_Font.png │ │ ├── Console_Font_Small.png │ │ ├── Enum_Song.png │ │ ├── Menu_Highlight.png │ │ ├── Menu_Title.png │ │ ├── Menu_Title.psd │ │ ├── Scanning_Loudness.png │ │ ├── Tile_Black.png │ │ ├── Tile_White.png │ │ └── ipag.ttf │ │ ├── OtherConfig.ini │ │ ├── SkinConfig.ini │ │ └── Sounds │ │ ├── Cancel.ogg │ │ ├── Change.ogg │ │ ├── Dan │ │ ├── Failed.ogg │ │ └── Section.ogg │ │ ├── Decide.ogg │ │ ├── Move.ogg │ │ ├── SongDecide.ogg │ │ ├── Taiko │ │ ├── Adlib.ogg │ │ ├── dong.ogg │ │ └── ka.ogg │ │ └── balloon.ogg ├── discord-rpc.dll └── dll │ ├── Bass.Net.dll │ ├── DirectShowLib-2005.dll │ ├── Microsoft.VC90.CRT.manifest │ ├── SoundDecoder.dll │ ├── bass.dll │ ├── bass_fx.dll │ ├── bassasio.dll │ ├── bassenc.dll │ ├── bassmix.dll │ ├── basswasapi.dll │ ├── msvcm90.dll │ ├── msvcp90.dll │ ├── msvcr90.dll │ └── xadec.dll └── docs ├── index.md ├── skinning.md ├── song-list-files.md └── song-ratings-favorites.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @twopointzero 2 | 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/.gitignore -------------------------------------------------------------------------------- /FDK19/FDK19.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/FDK19.csproj -------------------------------------------------------------------------------- /FDK19/FDK19.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/FDK19.csproj.user -------------------------------------------------------------------------------- /FDK19/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FDK19/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/packages.config -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CActivity.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CCounter.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CFPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CFPS.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/COS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/COS.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CPowerManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CPowerManagement.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CTimer.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CTimerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CTimerBase.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CTraceLogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CTraceLogListener.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/CWin32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/CWin32.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/C共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/C共通.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/C変換.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/C変換.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/ExtensionMethods/DoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/ExtensionMethods/DoubleExtensions.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/ExtensionMethods/Int32Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/ExtensionMethods/Int32Extensions.cs -------------------------------------------------------------------------------- /FDK19/コード/00.共通/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/00.共通/StringExtensions.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Core/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Core/Game.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Core/GameClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Core/GameClock.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Core/GameTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Core/GameTime.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Core/GameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Core/GameWindow.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Core/GameWindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Core/GameWindowSize.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/DeviceSettings/ConversionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/DeviceSettings/ConversionMethods.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/DeviceSettings/DeviceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/DeviceSettings/DeviceSettings.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/DeviceSettings/Direct3D9Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/DeviceSettings/Direct3D9Settings.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Enumeration/Enumeration9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Enumeration/Enumeration9.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Rendering/DeviceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Rendering/DeviceCache.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Rendering/DeviceCreationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Rendering/DeviceCreationException.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Rendering/GraphicsDeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Rendering/GraphicsDeviceManager.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Rendering/NoCompatibleDevicesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Rendering/NoCompatibleDevicesException.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Win32/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Win32/NativeMethods.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Win32/NativeStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Win32/NativeStructures.cs -------------------------------------------------------------------------------- /FDK19/コード/01.フレームワーク/Win32/WindowConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/01.フレームワーク/Win32/WindowConstants.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/CInputJoystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/CInputJoystick.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/CInputKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/CInputKeyboard.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/CInputMIDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/CInputMIDI.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/CInputMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/CInputMouse.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/CInput管理.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/CInput管理.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/DeviceConstantConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/DeviceConstantConverter.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/E入力デバイス種別.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/E入力デバイス種別.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/IInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/IInputDevice.cs -------------------------------------------------------------------------------- /FDK19/コード/02.入力/STInputEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/02.入力/STInputEvent.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/CSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/CSound.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/CSoundDeviceASIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/CSoundDeviceASIO.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/CSoundDeviceDirectSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/CSoundDeviceDirectSound.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/CSoundDeviceWASAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/CSoundDeviceWASAPI.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/CSoundTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/CSoundTimer.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/Cmp3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/Cmp3.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/Cogg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/Cogg.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/Cxa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/Cxa.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/ESoundDeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/ESoundDeviceType.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/ESoundGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/ESoundGroup.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/ISoundDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/ISoundDevice.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/LoudnessMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/LoudnessMetadata.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/LoudnessMetadataScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/LoudnessMetadataScanner.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/Lufs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/Lufs.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/SongGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/SongGainController.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/SoundDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/SoundDecoder.cs -------------------------------------------------------------------------------- /FDK19/コード/03.サウンド/SoundGroupLevelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/03.サウンド/SoundGroupLevelController.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/BitmapUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/BitmapUtil.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/CAvi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/CAvi.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/CTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/CTexture.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/CTextureAutofold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/CTextureAutofold.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/CTextureCreateFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/CTextureCreateFailedException.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/HorizontalReferencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/HorizontalReferencePoint.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/VerticalReferencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/VerticalReferencePoint.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/頂点フォーマット(Vertex)/PositionColoredTexturedVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/頂点フォーマット(Vertex)/PositionColoredTexturedVertex.cs -------------------------------------------------------------------------------- /FDK19/コード/04.グラフィック/頂点フォーマット(Vertex)/TransformedColoredTexturedVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/04.グラフィック/頂点フォーマット(Vertex)/TransformedColoredTexturedVertex.cs -------------------------------------------------------------------------------- /FDK19/コード/05.DirectShow/CDStoWAVFileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/05.DirectShow/CDStoWAVFileImage.cs -------------------------------------------------------------------------------- /FDK19/コード/05.DirectShow/CDirectShow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/05.DirectShow/CDirectShow.cs -------------------------------------------------------------------------------- /FDK19/コード/05.DirectShow/MemoryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/FDK19/コード/05.DirectShow/MemoryRenderer.cs -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/README.md -------------------------------------------------------------------------------- /TJAPlayer3.Tests/ErrorReporting/ErrorReporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/ErrorReporting/ErrorReporterTests.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/Songs/CStrジャンルtoNumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/Songs/CStrジャンルtoNumTests.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/Songs/CStrジャンルtoStrTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/Songs/CStrジャンルtoStrTests.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/TJAPlayer3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/TJAPlayer3.Tests.csproj -------------------------------------------------------------------------------- /TJAPlayer3.Tests/Updates/UpdateCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/Updates/UpdateCheckerTests.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/app.config -------------------------------------------------------------------------------- /TJAPlayer3.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/packages.config -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/CDTXStyleExtractorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/CDTXStyleExtractorTests.cs -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/205_example_but_with_duplicate_sheets.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_and_2.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_1_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_2_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_couple_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_double_only_but_with_duplicate_sheets.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_couple.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_and_double_but_with_duplicate_sheets.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_couple_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_double_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_couple.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_and_double.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/kitchen_sink_single_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_double_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_and_double.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/mixed_case_single_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_course.0.tja: -------------------------------------------------------------------------------- 1 | LEVEL:6 2 | -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_course.1.tja: -------------------------------------------------------------------------------- 1 | LEVEL:6 2 | -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_course.2.tja: -------------------------------------------------------------------------------- 1 | LEVEL:6 2 | -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/no_style_but_with_duplicate_sheets.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_double_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_and_double.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.0.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.0.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.1.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.1.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/approved/trailing_characters_single_only.2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/205_example.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/205_example.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/205_example_but_with_duplicate_sheets.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/205_example_but_with_duplicate_sheets.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_1_and_2.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_1_and_2.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_1_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_1_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_2_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_2_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_couple_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_couple_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_double_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_double_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_double_only_but_with_duplicate_sheets.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_double_only_but_with_duplicate_sheets.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_couple.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_couple.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_double.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_double.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_double_but_with_duplicate_sheets.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_and_double_but_with_duplicate_sheets.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course_but_with_duplicate_sheets.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/expected_case_single_only_whole_file_due_to_no_course_but_with_no_start.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_couple_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_couple_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_double_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_double_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_and_couple.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_and_couple.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_and_double.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_and_double.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/kitchen_sink_single_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_double_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_double_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_single_and_double.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_single_and_double.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_single_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/mixed_case_single_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/no_course.tja: -------------------------------------------------------------------------------- 1 | LEVEL:6 2 | -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/no_style.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/no_style.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/no_style_but_with_duplicate_sheets.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/no_style_but_with_duplicate_sheets.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_double_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_double_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_single_and_double.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_single_and_double.tja -------------------------------------------------------------------------------- /TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_single_only.tja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.Tests/コード/スコア、曲/input/trailing_characters_single_only.tja -------------------------------------------------------------------------------- /TJAPlayer3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3.sln -------------------------------------------------------------------------------- /TJAPlayer3/Animations/Animator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Animations/Animator.cs -------------------------------------------------------------------------------- /TJAPlayer3/Animations/FadeOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Animations/FadeOut.cs -------------------------------------------------------------------------------- /TJAPlayer3/Animations/IAnimatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Animations/IAnimatable.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CActFlushGPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CActFlushGPU.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CConfigIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CConfigIni.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CDTXVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CDTXVersion.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CPad.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CPrivateFastFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CPrivateFastFont.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CPrivateFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CPrivateFont.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/CSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/CSkin.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/ConfigIniToSongGainControllerBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/ConfigIniToSongGainControllerBinder.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/ConfigIniToSoundGroupLevelControllerBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/ConfigIniToSoundGroupLevelControllerBinder.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/C定数.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/C定数.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/C文字コンソール.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/C文字コンソール.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/Discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/Discord.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/FontUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/FontUtilities.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/KeyboardSoundGroupLevelControlHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/KeyboardSoundGroupLevelControlHandler.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/PreciseStringMeasurement/CPreciseStringMeasurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/PreciseStringMeasurement/CPreciseStringMeasurer.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/PreciseStringMeasurement/DirectBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/PreciseStringMeasurement/DirectBitmap.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/PreciseStringMeasurement/MeasureStringPreciselyCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/PreciseStringMeasurement/MeasureStringPreciselyCacheKey.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/Program.cs -------------------------------------------------------------------------------- /TJAPlayer3/Common/TJAPlayer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Common/TJAPlayer3.cs -------------------------------------------------------------------------------- /TJAPlayer3/ErrorReporting/ErrorReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/ErrorReporting/ErrorReporter.cs -------------------------------------------------------------------------------- /TJAPlayer3/Items/CItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Items/CItemBase.cs -------------------------------------------------------------------------------- /TJAPlayer3/Items/CItemInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Items/CItemInteger.cs -------------------------------------------------------------------------------- /TJAPlayer3/Items/CItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Items/CItemList.cs -------------------------------------------------------------------------------- /TJAPlayer3/Items/CItemToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Items/CItemToggle.cs -------------------------------------------------------------------------------- /TJAPlayer3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Discord.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Discord.Designer.cs -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Discord.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Discord.resx -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Resources.resx -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TJAPlayer3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Properties/Settings.settings -------------------------------------------------------------------------------- /TJAPlayer3/Resources/TJAPlayer3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Resources/TJAPlayer3.ico -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CBoxDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CBoxDef.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CDTX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CDTX.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CDTXCompanionFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CDTXCompanionFileFinder.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CDTXStyleExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CDTXStyleExtractor.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CScoreIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CScoreIni.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CSong管理.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CSong管理.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CStrジャンル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CStrジャンル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CStrジャンルtoNum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CStrジャンルtoNum.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/CStrジャンルtoStr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/CStrジャンルtoStr.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/Cスコア.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/Cスコア.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノード.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノード.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/ComparerChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/ComparerChain.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC15.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC8_14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerAC8_14.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerPlaylistIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerPlaylistIndex.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerRating.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerタイトル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerタイトル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerノード種別.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparerノード種別.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparer絶対パス.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/C曲リストノードComparers/C曲リストノードComparer絶対パス.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/Dan-C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/Dan-C.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/EジャンルAC15SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/EジャンルAC15SortOrder.cs -------------------------------------------------------------------------------- /TJAPlayer3/Songs/GaugeIncreaseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Songs/GaugeIncreaseMode.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/01.StartUp/CStage起動.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/01.StartUp/CStage起動.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/01.StartUp/TextureLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/01.StartUp/TextureLoader.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/02.Title/CActEnumSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/02.Title/CActEnumSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/02.Title/CActScanningLoudness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/02.Title/CActScanningLoudness.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/02.Title/CEnumSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/02.Title/CEnumSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/02.Title/CStageタイトル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/02.Title/CStageタイトル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/04.Config/CActConfigKeyAssign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/04.Config/CActConfigKeyAssign.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/04.Config/CActConfigList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/04.Config/CActConfigList.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/04.Config/CStageコンフィグ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/04.Config/CStageコンフィグ.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectInformation.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectPopupMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectPopupMenu.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectPreimageパネル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectPreimageパネル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectPresound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectPresound.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectQuickConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectQuickConfig.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectShowCurrentPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectShowCurrentPosition.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelectステータスパネル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelectステータスパネル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelect曲リスト.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelect曲リスト.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelect演奏履歴パネル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelect演奏履歴パネル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSelect難易度選択画面.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSelect難易度選択画面.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CActSortSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CActSortSongs.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/CStage選曲.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/CStage選曲.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/SongRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/SongRating.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/SongRatingControlHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/SongRatingControlHandler.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/05.SongSelect/SongRatingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/05.SongSelect/SongRatingController.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/06.SongLoading/CStage曲読み込み.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/06.SongLoading/CStage曲読み込み.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/06.SongLoading/FastRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/06.SongLoading/FastRender.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏AVI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏AVI.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏Combo共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏Combo共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏Combo音声.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏Combo音声.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏PauseMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏PauseMenu.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏ゲージ共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏ゲージ共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏スクロール速度.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏スクロール速度.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏スコア共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏スコア共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏ステージ失敗.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏ステージ失敗.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏ステータスパネル共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏ステータスパネル共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏パネル文字列.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏パネル文字列.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏判定文字列共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏判定文字列共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CAct演奏演奏情報.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CAct演奏演奏情報.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CInvisibleChip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CInvisibleChip.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CLagLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CLagLogger.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/CStage演奏画面共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/CStage演奏画面共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/C演奏判定ライン座標共通.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/C演奏判定ライン座標共通.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsDancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsDancer.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsFooter.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsMob.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsMtaiko.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsMtaiko.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsRunner.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsキャラクター.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsキャラクター.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsゲージ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsゲージ.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsゲームモード.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsゲームモード.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsコンボ吹き出し.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsコンボ吹き出し.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsスコア.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsスコア.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsステータスパネル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsステータスパネル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsチップエフェクト.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsチップエフェクト.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsチップファイアD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsチップファイアD.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsレーン.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsレーン.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsレーン太鼓.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drumsレーン太鼓.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums判定文字列.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums判定文字列.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums演奏終了演出.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums演奏終了演出.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums背景.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums背景.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums連打.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums連打.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums連打キャラ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums連打キャラ.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums風船.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CAct演奏Drums風船.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/CStage演奏ドラム画面.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/CStage演奏ドラム画面.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/Dan_Cert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/Dan_Cert.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/FireWorks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/FireWorks.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/FlyingNotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/FlyingNotes.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/GoGoSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/GoGoSplash.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/LaneFlash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/LaneFlash.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/PuchiChara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/PuchiChara.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/Rainbow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/Rainbow.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/07.Game/Taiko/TaikoLaneFlash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/07.Game/Taiko/TaikoLaneFlash.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/08.Result/CActResultImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/08.Result/CActResultImage.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/08.Result/CActResultParameterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/08.Result/CActResultParameterPanel.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/08.Result/CActResultRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/08.Result/CActResultRank.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/08.Result/CActResultSongBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/08.Result/CActResultSongBar.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/08.Result/CStage結果.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/08.Result/CStage結果.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/09.Ending/CStage終了.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/09.Ending/CStage終了.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/10.ChangeSkin/CStageChangeSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/10.ChangeSkin/CStageChangeSkin.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActDFPFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActDFPFont.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActFIFOBlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActFIFOBlack.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActFIFOResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActFIFOResult.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActFIFOStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActFIFOStart.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActFIFOWhite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActFIFOWhite.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CActオプションパネル.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CActオプションパネル.cs -------------------------------------------------------------------------------- /TJAPlayer3/Stages/CStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Stages/CStage.cs -------------------------------------------------------------------------------- /TJAPlayer3/TJAPlayer3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/TJAPlayer3.csproj -------------------------------------------------------------------------------- /TJAPlayer3/TJAPlayer3.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/TJAPlayer3.csproj.user -------------------------------------------------------------------------------- /TJAPlayer3/TJAPlayer3.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/TJAPlayer3.manifest -------------------------------------------------------------------------------- /TJAPlayer3/Updates/UpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/Updates/UpdateChecker.cs -------------------------------------------------------------------------------- /TJAPlayer3/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/app.config -------------------------------------------------------------------------------- /TJAPlayer3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/TJAPlayer3/packages.config -------------------------------------------------------------------------------- /Test/FDK.MemoryRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/FDK.MemoryRenderer.dll -------------------------------------------------------------------------------- /Test/Licenses/BASS/LICENSE(BASS.Net).rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/BASS/LICENSE(BASS.Net).rtf -------------------------------------------------------------------------------- /Test/Licenses/BASS/license(BASS).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/BASS/license(BASS).txt -------------------------------------------------------------------------------- /Test/Licenses/CSharpTest.Net.Collections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/CSharpTest.Net.Collections.txt -------------------------------------------------------------------------------- /Test/Licenses/DirectShowLib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/DirectShowLib.txt -------------------------------------------------------------------------------- /Test/Licenses/IPA_Font_License_Agreement_v1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/IPA_Font_License_Agreement_v1.0.txt -------------------------------------------------------------------------------- /Test/Licenses/SlimDX/CodeLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/SlimDX/CodeLicense.txt -------------------------------------------------------------------------------- /Test/Licenses/SlimDX/MediaLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/SlimDX/MediaLicense.txt -------------------------------------------------------------------------------- /Test/Licenses/discord-rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/discord-rpc -------------------------------------------------------------------------------- /Test/Licenses/dtxmania.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/dtxmania.txt -------------------------------------------------------------------------------- /Test/Licenses/libogg_libvorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/libogg_libvorbis.txt -------------------------------------------------------------------------------- /Test/Licenses/xadec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/Licenses/xadec.txt -------------------------------------------------------------------------------- /Test/System/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | !/SimpleStyle/ 3 | -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/1_Title/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/1_Title/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/1_Title/Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/1_Title/Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/1_Title/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/1_Title/Menu.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/1_Title/Menu.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/1_Title/Menu.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Arrow.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Arrow.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Arrow.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Cursor.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Enum_Song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Enum_Song.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Font.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/Font_Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/Font_Bold.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/ItemBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/ItemBox.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/ItemBox.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/ItemBox.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/KeyAssign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/KeyAssign.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/2_Config/KeyAssign.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/2_Config/KeyAssign.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Auto.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Auto.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Auto.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Center.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Center.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Center.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_0.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_1.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_2.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_3.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_4.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_4.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_4.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_5.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_5.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_5.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_6.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_6.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_6.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_7.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_7.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_7.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_8.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_8.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Bar_Genre_8.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Branch.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Branch.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Branch.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Branch_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Branch_Text.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Branch_Text.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Branch_Text.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Left.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Left.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Left.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Right.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Right.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Cursor_Right.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Difficulty.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Difficulty.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Difficulty.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Footer.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Footer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Footer.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Frame_Score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Frame_Score.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Frame_Score.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Frame_Score.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_0.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_1.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_2.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_3.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_4.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_4.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_4.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_5.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_5.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_5.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_6.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_6.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_6.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_7.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_7.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_7.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_8.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_8.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreBackground_8.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreText.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/GenreText.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/GenreText.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Header.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Header.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Header.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Level.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Level.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Level.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Rating.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Rating.svg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_0.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_1.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_2.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_3.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_4.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_4.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_4.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_5.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_5.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_5.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_6.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_6.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_6.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_Text.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_Text.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/ScoreWindow_Text.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Score_Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Score_Select.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/3_SongSelect/Score_Select.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/3_SongSelect/Score_Select.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/4_SongLoading/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/4_SongLoading/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/4_SongLoading/FadeIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/4_SongLoading/FadeIn.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/4_SongLoading/FadeOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/4_SongLoading/FadeOut.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/4_SongLoading/Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/4_SongLoading/Plate.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/4_SongLoading/Plate.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/4_SongLoading/Plate.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Fire.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Fire.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Fire.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/GoGoSplash.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/GoGoSplash.aep -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/GoGoSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/GoGoSplash.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/Explosion.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/Explosion_Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/Explosion_Big.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks.aep -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks_1P.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Hit/FireWorks_1P.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Rainbow.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/0.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/10_Effects/Roll/3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Balloon.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Balloon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Balloon.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_4.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Breaking_5.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_1P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_1P.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_1P.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Combo_2P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Combo.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Combo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Combo.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Roll.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Roll.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Number_Roll.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Roll.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Roll.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/11_Balloon/Roll.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_GoGo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_GoGo.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_GoGo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_GoGo.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_Main.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_Sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Background_Sub.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Expert.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Expert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Expert.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Master.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Master.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Master.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Base_Normal.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Blue.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Red.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Expert.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Master.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Text_Normal.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/12_Lane/Yellow.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Anime.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Anime.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Anime.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Child.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Classic.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Game.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/J-POP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/J-POP.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Namco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Namco.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Variety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Variety.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Vocaloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/13_GENRE/Vocaloid.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/14_GameMode/Timer_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/14_GameMode/Timer_Frame.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/14_GameMode/Timer_Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/14_GameMode/Timer_Tick.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/16_Runner/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/16_Runner/0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/16_Runner/final.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/16_Runner/final.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Base.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamRange.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamRange.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamRange.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamType.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamType.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamType.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamUnit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamUnit.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamUnit.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/ExamUnit.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Failed.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Failed.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Failed.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Clear.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Flush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Flush.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Normal.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Reach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Gauge_Reach.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Number.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Number.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Number.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Screen.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Screen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/17_DanC/Screen.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/5_Background/0/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/5_Background/0/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/1P_Frame.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Background.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Background.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/2P_Frame.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Base.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Base.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Base.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/ComboText.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/ComboText.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Big.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Big.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Big.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Effect.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Effect.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Effect.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Text.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Text.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Combo_Text.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Don.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Don.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Ka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Ka.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelDown.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelDown.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelDown.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelUp.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelUp.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/LevelUp.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score_1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score_1P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score_2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/6_Taiko/Score_2P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Base_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Explosion.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Explosion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Explosion.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/1P_Line_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Base_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Explosion.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Explosion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Explosion.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Line.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Line_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/2P_Line_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Fire.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Fire.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Fire.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/0.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/0.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/1.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/10.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/11.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/2.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/3.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/4.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/5.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/6.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/7.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/8.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Rainbow/9.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Soul.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Soul.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/7_Gauge/Soul.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Bar.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Bar_Branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Bar_Branch.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Judge.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Judge.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Judge.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Judge_Meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Judge_Meter.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Judge_Meter.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Judge_Meter.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Notes.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Notes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Notes.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/Notes_Arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/Notes_Arm.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/SENotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/SENotes.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/5_Game/SENotes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/5_Game/SENotes.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Background.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Dan.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Dan.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Dan.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/FadeIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/FadeIn.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/FadeIn.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/FadeIn.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Base_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_ExHard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_ExHard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Gauge_Hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Gauge_Hard.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Header.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Header.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Header.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Judge.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Judge.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Judge.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Number.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Number.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Number.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Panel.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Panel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Panel.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Score_Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Score_Number.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Score_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Score_Text.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/6_Result/Score_Text.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/6_Result/Score_Text.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Console_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Console_Font.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Console_Font_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Console_Font_Small.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Enum_Song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Enum_Song.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Menu_Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Menu_Highlight.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Menu_Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Menu_Title.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Menu_Title.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Menu_Title.psd -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Scanning_Loudness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Scanning_Loudness.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Tile_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Tile_Black.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/Tile_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/Tile_White.png -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Graphics/ipag.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Graphics/ipag.ttf -------------------------------------------------------------------------------- /Test/System/SimpleStyle/OtherConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/OtherConfig.ini -------------------------------------------------------------------------------- /Test/System/SimpleStyle/SkinConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/SkinConfig.ini -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Cancel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Cancel.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Change.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Change.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Dan/Failed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Dan/Failed.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Dan/Section.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Dan/Section.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Decide.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Decide.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Move.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Move.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/SongDecide.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/SongDecide.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Taiko/Adlib.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Taiko/Adlib.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Taiko/dong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Taiko/dong.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/Taiko/ka.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/Taiko/ka.ogg -------------------------------------------------------------------------------- /Test/System/SimpleStyle/Sounds/balloon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/System/SimpleStyle/Sounds/balloon.ogg -------------------------------------------------------------------------------- /Test/discord-rpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/discord-rpc.dll -------------------------------------------------------------------------------- /Test/dll/Bass.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/Bass.Net.dll -------------------------------------------------------------------------------- /Test/dll/DirectShowLib-2005.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/DirectShowLib-2005.dll -------------------------------------------------------------------------------- /Test/dll/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Test/dll/SoundDecoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/SoundDecoder.dll -------------------------------------------------------------------------------- /Test/dll/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/bass.dll -------------------------------------------------------------------------------- /Test/dll/bass_fx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/bass_fx.dll -------------------------------------------------------------------------------- /Test/dll/bassasio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/bassasio.dll -------------------------------------------------------------------------------- /Test/dll/bassenc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/bassenc.dll -------------------------------------------------------------------------------- /Test/dll/bassmix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/bassmix.dll -------------------------------------------------------------------------------- /Test/dll/basswasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/basswasapi.dll -------------------------------------------------------------------------------- /Test/dll/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/msvcm90.dll -------------------------------------------------------------------------------- /Test/dll/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/msvcp90.dll -------------------------------------------------------------------------------- /Test/dll/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/msvcr90.dll -------------------------------------------------------------------------------- /Test/dll/xadec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/Test/dll/xadec.dll -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/skinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/docs/skinning.md -------------------------------------------------------------------------------- /docs/song-list-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/docs/song-list-files.md -------------------------------------------------------------------------------- /docs/song-ratings-favorites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twopointzero/TJAPlayer3/HEAD/docs/song-ratings-favorites.md --------------------------------------------------------------------------------