├── .gitignore ├── COMPILE.md ├── Game ├── ED │ ├── Ending.cpp │ └── Ending.h ├── Game.cpp ├── Game.h ├── GlobalVariableAndStatistics.cpp ├── GlobalVariableAndStatistics.h ├── HighScoreScreen │ ├── HighScoreScreen.cpp │ └── HighScoreScreen.h ├── Musicroom │ ├── MusicRoom_Text.cpp │ ├── Musicroom.cpp │ └── Musicroom.h ├── OP │ ├── OpParticle.cpp │ ├── OpParticle.h │ ├── Opening.cpp │ ├── Opening.h │ └── trial_text.cpp ├── PlayResultScreen │ ├── PlayResultScreen.cpp │ ├── PlayResultScreen.h │ ├── PlayResultScreen_Text.cpp │ └── 분석.asm ├── Replay.cpp ├── Replay.h ├── Scheme.cpp ├── Scheme.h ├── SchemeSwitcher.cpp ├── SchemeSwitcher.h ├── SelectCharaScreen │ ├── SelectCharaScreen.cpp │ └── SelectCharaScreen.h ├── SelectReplayScreen │ ├── SelectReplayScreen.cpp │ └── SelectReplayScreen.h ├── StaffRoll │ ├── StaffRoll.cpp │ ├── StaffRoll.h │ ├── StaffRollEx.cpp │ ├── StaffRollEx.h │ ├── 분석.asm │ └── 분석2.asm ├── Stage │ ├── Background │ │ ├── Background.cpp │ │ └── Background.h │ ├── Boss │ │ ├── Boss.cpp │ │ ├── Boss.h │ │ ├── BossStage1.cpp │ │ ├── BossStage1.h │ │ ├── BossStage2.cpp │ │ ├── BossStage2.h │ │ ├── BossStage3.cpp │ │ ├── BossStage3.h │ │ ├── BossStage4.cpp │ │ ├── BossStage4.h │ │ ├── BossStage4Mai.cpp │ │ ├── BossStage4Mai.h │ │ ├── BossStage4Yuki.cpp │ │ ├── BossStage4Yuki.h │ │ ├── BossStage5.cpp │ │ ├── BossStage5.h │ │ ├── BossStage6.cpp │ │ ├── BossStage6.h │ │ ├── BossStageEx.cpp │ │ └── BossStageEx.h │ ├── Chara │ │ ├── Chara.cpp │ │ ├── Chara.h │ │ ├── CharaMarisa.cpp │ │ ├── CharaMarisa.h │ │ ├── CharaMima.cpp │ │ ├── CharaMima.h │ │ ├── CharaReimu.cpp │ │ ├── CharaReimu.h │ │ ├── CharaYuka.cpp │ │ └── CharaYuka.h │ ├── CharaBullet │ │ ├── CharaBullet.cpp │ │ └── CharaBullet.h │ ├── Circle │ │ ├── Circle.cpp │ │ └── Circle.h │ ├── Dialogue │ │ ├── Dialogue.cpp │ │ └── Dialogue.h │ ├── Enemy │ │ ├── Enemy.cpp │ │ └── Enemy.h │ ├── EnemyBullet │ │ ├── EnemyBullet.cpp │ │ └── EnemyBullet.h │ ├── FloatingText │ │ ├── FloatingText.cpp │ │ └── FloatingText.h │ ├── GatherEffect │ │ ├── GatherEffect.cpp │ │ └── GatherEffect.h │ ├── Item │ │ ├── Item.cpp │ │ └── Item.h │ ├── Laser │ │ ├── Laser.cpp │ │ └── Laser.h │ ├── MidBoss │ │ ├── MidBoss.cpp │ │ ├── MidBoss.h │ │ ├── MidBossStage1.cpp │ │ ├── MidBossStage1.h │ │ ├── MidBossStage2.cpp │ │ ├── MidBossStage2.h │ │ ├── MidBossStage3.cpp │ │ ├── MidBossStage3.h │ │ ├── MidBossStage4.cpp │ │ ├── MidBossStage4.h │ │ ├── MidBossStage5.cpp │ │ ├── MidBossStage5.h │ │ ├── MidBossStageEx.cpp │ │ └── MidBossStageEx.h │ ├── PopupNumber │ │ ├── PopupNumber.cpp │ │ └── PopupNumber.h │ ├── SparkEffect │ │ ├── SparkEffect.cpp │ │ └── SparkEffect.h │ ├── SpecialBullet │ │ ├── CurvingBullet.cpp │ │ ├── CurvingBullet.h │ │ ├── KnifeBullet.cpp │ │ ├── KnifeBullet.h │ │ ├── LargeBullet.cpp │ │ ├── LargeBullet.h │ │ ├── ShinkiBullet.cpp │ │ └── ShinkiBullet.h │ ├── Stage.cpp │ ├── Stage.h │ ├── Stage2BG │ │ ├── Stage2BG.cpp │ │ └── Stage2BG.h │ ├── StageResource.cpp │ ├── StageResource.h │ ├── StageResource_Text.cpp │ ├── Summary │ │ ├── Summary.cpp │ │ ├── Summary.h │ │ └── Summary_Text.cpp │ └── TextOverlay │ │ ├── TextOverlay.cpp │ │ └── TextOverlay.h └── TitleScreen │ ├── TitleRollingTama.cpp │ ├── TitleRollingTama.h │ ├── TitleScreen - 복사본.txt │ ├── TitleScreen.cpp │ ├── TitleScreen.h │ └── TitleScreen_Text.cpp ├── LICENSE ├── README.md ├── SE ├── s01.wav ├── s02.wav ├── s03.wav ├── s04.wav ├── s05.wav ├── s06.wav ├── s07.wav ├── s08.wav ├── s09.wav ├── s10.wav ├── s11.wav ├── s12.wav ├── s13.wav ├── s14.wav └── s15.wav ├── TODO.MD ├── gameLib ├── CommonFunction │ ├── CommonFunctionGraphic.cpp │ ├── CommonFunctionGraphic.h │ ├── CommonFunctionInput.cpp │ ├── CommonFunctionInput.h │ ├── CommonFunctionMusicSE.cpp │ ├── CommonFunctionMusicSE.h │ ├── CommonFunctionSystem.cpp │ └── CommonFunctionSystem.h ├── Graphic │ ├── 2DImage.cpp │ ├── 2DImage.h │ ├── 2DImageArray.cpp │ ├── 2DImageArray.h │ ├── GLContext.cpp │ ├── GLContext.h │ ├── PC98Font.cpp │ ├── PC98Font.h │ ├── Th5ExtFont.cpp │ ├── Th5ExtFont.h │ ├── include.old │ │ ├── glew.h │ │ └── wglew.h │ ├── include │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ └── mygl.h ├── Input │ ├── KeyInputDI.cpp │ └── KeyInputDI.h ├── MMDPlayer │ ├── GuruGuruSMF4.cpp │ ├── GuruGuruSMF4.h │ ├── MMDPlayer.cpp │ └── MMDPlayer.h ├── Misc │ ├── md5.cpp │ ├── md5.h │ ├── sha1.cpp │ └── sha1.h ├── PMDPlayer │ ├── PMDPlayer.cpp │ └── PMDPlayer.h ├── SE │ ├── SoundEffect.cpp │ └── SoundEffect.h ├── Window │ ├── GameWindow.cpp │ └── GameWindow.h └── th5DatFile │ ├── BB │ ├── BBFile.cpp │ └── BBFile.h │ ├── BFT │ ├── BFTFile.cpp │ └── BFTFile.h │ ├── CD2CDG │ ├── CD2CDGFile.cpp │ └── CD2CDGFile.h │ ├── MPN │ ├── MPNFile.cpp │ └── MPNFile.h │ ├── PI │ ├── PIFile.cpp │ └── PIFile.h │ ├── STD │ ├── STDFile.cpp │ └── STDFile.h │ ├── th5DatFile.cpp │ └── th5DatFile.h ├── icon2.ico ├── include ├── DSUtil │ ├── dsutil.cpp │ ├── dsutil.h │ ├── dxutil.cpp │ └── dxutil.h ├── GuruGuruSMF4 │ ├── GuruGuruSMF4.h │ ├── GuruGuruSMF4_C_Dynamic.c │ ├── GuruGuruSMF4_C_Dynamic.h │ ├── GuruGuruSMF4_C_Static.h │ ├── GuruGuruSMF4_Cpp.h │ ├── GuruGuruSMF4_Cpp_Dynamic.cpp │ └── GuruGuruSMF4_Cpp_Static.cpp ├── PMDWin │ ├── PCMMusDriver.h │ └── PMDWinImort.h └── cxxmidi │ ├── callback.hpp │ ├── converters.hpp │ ├── event.hpp │ ├── file.hpp │ ├── guts │ ├── 3rdparty │ │ ├── RtMidi │ │ │ ├── RtError.h │ │ │ ├── RtMidi.cpp │ │ │ └── RtMidi.h │ │ └── pstdint.h │ ├── compiler.hpp │ ├── endianness.hpp │ ├── mutex.hpp │ ├── simulator.hpp │ ├── stdint.hpp │ ├── thread.hpp │ └── unused.hpp │ ├── instrument.hpp │ ├── message.hpp │ ├── note.hpp │ ├── output │ ├── abstract.hpp │ ├── default.hpp │ ├── linux │ │ └── alsa.hpp │ └── windows.hpp │ ├── player │ ├── abstract.hpp │ ├── asynchronous.hpp │ └── synchronous.hpp │ ├── sleep.hpp │ ├── sysex.hpp │ ├── time │ ├── duration.hpp │ ├── period.hpp │ └── point.hpp │ ├── track.hpp │ ├── utils.hpp │ └── version.hpp ├── main.cpp ├── practice.bmp ├── replay.bmp ├── replay ├── replay00.rpy ├── replay01.rpy ├── replay02.rpy ├── replay03.rpy ├── replay04.rpy ├── replay05.rpy ├── replay06.rpy ├── replay07.rpy ├── replay16.rpy ├── replay17.rpy ├── replay18.rpy ├── replay19.rpy └── replay39.rpy ├── resource.h ├── resource └── replay.bmp ├── rt5custom ├── resource.h ├── rt5custom.aps ├── rt5custom.cpp ├── rt5custom.h ├── rt5custom.ico ├── rt5custom.rc ├── rt5custom.vcxproj ├── rt5custom.vcxproj.filters ├── rt5custom.vcxproj.user ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── rt5sandbox.aps ├── rt5sandbox.rc ├── rt5sandbox.sln ├── rt5sandbox.suo ├── rt5sandbox.vcproj ├── rt5sandbox.vcxproj ├── rt5sandbox.vcxproj.filters ├── rt5sandbox.vcxproj.user └── selectbg.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/.gitignore -------------------------------------------------------------------------------- /COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/COMPILE.md -------------------------------------------------------------------------------- /Game/ED/Ending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/ED/Ending.cpp -------------------------------------------------------------------------------- /Game/ED/Ending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/ED/Ending.h -------------------------------------------------------------------------------- /Game/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Game.cpp -------------------------------------------------------------------------------- /Game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Game.h -------------------------------------------------------------------------------- /Game/GlobalVariableAndStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/GlobalVariableAndStatistics.cpp -------------------------------------------------------------------------------- /Game/GlobalVariableAndStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/GlobalVariableAndStatistics.h -------------------------------------------------------------------------------- /Game/HighScoreScreen/HighScoreScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/HighScoreScreen/HighScoreScreen.cpp -------------------------------------------------------------------------------- /Game/HighScoreScreen/HighScoreScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/HighScoreScreen/HighScoreScreen.h -------------------------------------------------------------------------------- /Game/Musicroom/MusicRoom_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Musicroom/MusicRoom_Text.cpp -------------------------------------------------------------------------------- /Game/Musicroom/Musicroom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Musicroom/Musicroom.cpp -------------------------------------------------------------------------------- /Game/Musicroom/Musicroom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Musicroom/Musicroom.h -------------------------------------------------------------------------------- /Game/OP/OpParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/OP/OpParticle.cpp -------------------------------------------------------------------------------- /Game/OP/OpParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/OP/OpParticle.h -------------------------------------------------------------------------------- /Game/OP/Opening.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/OP/Opening.cpp -------------------------------------------------------------------------------- /Game/OP/Opening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/OP/Opening.h -------------------------------------------------------------------------------- /Game/OP/trial_text.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Game/PlayResultScreen/PlayResultScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/PlayResultScreen/PlayResultScreen.cpp -------------------------------------------------------------------------------- /Game/PlayResultScreen/PlayResultScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/PlayResultScreen/PlayResultScreen.h -------------------------------------------------------------------------------- /Game/PlayResultScreen/PlayResultScreen_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/PlayResultScreen/PlayResultScreen_Text.cpp -------------------------------------------------------------------------------- /Game/PlayResultScreen/분석.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/PlayResultScreen/분석.asm -------------------------------------------------------------------------------- /Game/Replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Replay.cpp -------------------------------------------------------------------------------- /Game/Replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Replay.h -------------------------------------------------------------------------------- /Game/Scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Scheme.cpp -------------------------------------------------------------------------------- /Game/Scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Scheme.h -------------------------------------------------------------------------------- /Game/SchemeSwitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SchemeSwitcher.cpp -------------------------------------------------------------------------------- /Game/SchemeSwitcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SchemeSwitcher.h -------------------------------------------------------------------------------- /Game/SelectCharaScreen/SelectCharaScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SelectCharaScreen/SelectCharaScreen.cpp -------------------------------------------------------------------------------- /Game/SelectCharaScreen/SelectCharaScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SelectCharaScreen/SelectCharaScreen.h -------------------------------------------------------------------------------- /Game/SelectReplayScreen/SelectReplayScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SelectReplayScreen/SelectReplayScreen.cpp -------------------------------------------------------------------------------- /Game/SelectReplayScreen/SelectReplayScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/SelectReplayScreen/SelectReplayScreen.h -------------------------------------------------------------------------------- /Game/StaffRoll/StaffRoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/StaffRoll.cpp -------------------------------------------------------------------------------- /Game/StaffRoll/StaffRoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/StaffRoll.h -------------------------------------------------------------------------------- /Game/StaffRoll/StaffRollEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/StaffRollEx.cpp -------------------------------------------------------------------------------- /Game/StaffRoll/StaffRollEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/StaffRollEx.h -------------------------------------------------------------------------------- /Game/StaffRoll/분석.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/분석.asm -------------------------------------------------------------------------------- /Game/StaffRoll/분석2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/StaffRoll/분석2.asm -------------------------------------------------------------------------------- /Game/Stage/Background/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Background/Background.cpp -------------------------------------------------------------------------------- /Game/Stage/Background/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Background/Background.h -------------------------------------------------------------------------------- /Game/Stage/Boss/Boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/Boss.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/Boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/Boss.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage1.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage1.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage2.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage2.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage3.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage3.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4Mai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4Mai.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4Mai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4Mai.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4Yuki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4Yuki.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage4Yuki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage4Yuki.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage5.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage5.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage6.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStage6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStage6.h -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStageEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStageEx.cpp -------------------------------------------------------------------------------- /Game/Stage/Boss/BossStageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Boss/BossStageEx.h -------------------------------------------------------------------------------- /Game/Stage/Chara/Chara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/Chara.cpp -------------------------------------------------------------------------------- /Game/Stage/Chara/Chara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/Chara.h -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaMarisa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaMarisa.cpp -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaMarisa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaMarisa.h -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaMima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaMima.cpp -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaMima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaMima.h -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaReimu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaReimu.cpp -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaReimu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaReimu.h -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaYuka.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaYuka.cpp -------------------------------------------------------------------------------- /Game/Stage/Chara/CharaYuka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Chara/CharaYuka.h -------------------------------------------------------------------------------- /Game/Stage/CharaBullet/CharaBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/CharaBullet/CharaBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/CharaBullet/CharaBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/CharaBullet/CharaBullet.h -------------------------------------------------------------------------------- /Game/Stage/Circle/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Circle/Circle.cpp -------------------------------------------------------------------------------- /Game/Stage/Circle/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Circle/Circle.h -------------------------------------------------------------------------------- /Game/Stage/Dialogue/Dialogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Dialogue/Dialogue.cpp -------------------------------------------------------------------------------- /Game/Stage/Dialogue/Dialogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Dialogue/Dialogue.h -------------------------------------------------------------------------------- /Game/Stage/Enemy/Enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Enemy/Enemy.cpp -------------------------------------------------------------------------------- /Game/Stage/Enemy/Enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Enemy/Enemy.h -------------------------------------------------------------------------------- /Game/Stage/EnemyBullet/EnemyBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/EnemyBullet/EnemyBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/EnemyBullet/EnemyBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/EnemyBullet/EnemyBullet.h -------------------------------------------------------------------------------- /Game/Stage/FloatingText/FloatingText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/FloatingText/FloatingText.cpp -------------------------------------------------------------------------------- /Game/Stage/FloatingText/FloatingText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/FloatingText/FloatingText.h -------------------------------------------------------------------------------- /Game/Stage/GatherEffect/GatherEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/GatherEffect/GatherEffect.cpp -------------------------------------------------------------------------------- /Game/Stage/GatherEffect/GatherEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/GatherEffect/GatherEffect.h -------------------------------------------------------------------------------- /Game/Stage/Item/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Item/Item.cpp -------------------------------------------------------------------------------- /Game/Stage/Item/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Item/Item.h -------------------------------------------------------------------------------- /Game/Stage/Laser/Laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Laser/Laser.cpp -------------------------------------------------------------------------------- /Game/Stage/Laser/Laser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Laser/Laser.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBoss.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBoss.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage1.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage1.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage2.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage2.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage3.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage3.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage4.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage4.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage5.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStage5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStage5.h -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStageEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStageEx.cpp -------------------------------------------------------------------------------- /Game/Stage/MidBoss/MidBossStageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/MidBoss/MidBossStageEx.h -------------------------------------------------------------------------------- /Game/Stage/PopupNumber/PopupNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/PopupNumber/PopupNumber.cpp -------------------------------------------------------------------------------- /Game/Stage/PopupNumber/PopupNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/PopupNumber/PopupNumber.h -------------------------------------------------------------------------------- /Game/Stage/SparkEffect/SparkEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SparkEffect/SparkEffect.cpp -------------------------------------------------------------------------------- /Game/Stage/SparkEffect/SparkEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SparkEffect/SparkEffect.h -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/CurvingBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/CurvingBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/CurvingBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/CurvingBullet.h -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/KnifeBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/KnifeBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/KnifeBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/KnifeBullet.h -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/LargeBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/LargeBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/LargeBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/LargeBullet.h -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/ShinkiBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/ShinkiBullet.cpp -------------------------------------------------------------------------------- /Game/Stage/SpecialBullet/ShinkiBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/SpecialBullet/ShinkiBullet.h -------------------------------------------------------------------------------- /Game/Stage/Stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Stage.cpp -------------------------------------------------------------------------------- /Game/Stage/Stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Stage.h -------------------------------------------------------------------------------- /Game/Stage/Stage2BG/Stage2BG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Stage2BG/Stage2BG.cpp -------------------------------------------------------------------------------- /Game/Stage/Stage2BG/Stage2BG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Stage2BG/Stage2BG.h -------------------------------------------------------------------------------- /Game/Stage/StageResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/StageResource.cpp -------------------------------------------------------------------------------- /Game/Stage/StageResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/StageResource.h -------------------------------------------------------------------------------- /Game/Stage/StageResource_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/StageResource_Text.cpp -------------------------------------------------------------------------------- /Game/Stage/Summary/Summary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Summary/Summary.cpp -------------------------------------------------------------------------------- /Game/Stage/Summary/Summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Summary/Summary.h -------------------------------------------------------------------------------- /Game/Stage/Summary/Summary_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/Summary/Summary_Text.cpp -------------------------------------------------------------------------------- /Game/Stage/TextOverlay/TextOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/TextOverlay/TextOverlay.cpp -------------------------------------------------------------------------------- /Game/Stage/TextOverlay/TextOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/Stage/TextOverlay/TextOverlay.h -------------------------------------------------------------------------------- /Game/TitleScreen/TitleRollingTama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleRollingTama.cpp -------------------------------------------------------------------------------- /Game/TitleScreen/TitleRollingTama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleRollingTama.h -------------------------------------------------------------------------------- /Game/TitleScreen/TitleScreen - 복사본.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleScreen - 복사본.txt -------------------------------------------------------------------------------- /Game/TitleScreen/TitleScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleScreen.cpp -------------------------------------------------------------------------------- /Game/TitleScreen/TitleScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleScreen.h -------------------------------------------------------------------------------- /Game/TitleScreen/TitleScreen_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/Game/TitleScreen/TitleScreen_Text.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/README.md -------------------------------------------------------------------------------- /SE/s01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s01.wav -------------------------------------------------------------------------------- /SE/s02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s02.wav -------------------------------------------------------------------------------- /SE/s03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s03.wav -------------------------------------------------------------------------------- /SE/s04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s04.wav -------------------------------------------------------------------------------- /SE/s05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s05.wav -------------------------------------------------------------------------------- /SE/s06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s06.wav -------------------------------------------------------------------------------- /SE/s07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s07.wav -------------------------------------------------------------------------------- /SE/s08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s08.wav -------------------------------------------------------------------------------- /SE/s09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s09.wav -------------------------------------------------------------------------------- /SE/s10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s10.wav -------------------------------------------------------------------------------- /SE/s11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s11.wav -------------------------------------------------------------------------------- /SE/s12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s12.wav -------------------------------------------------------------------------------- /SE/s13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s13.wav -------------------------------------------------------------------------------- /SE/s14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s14.wav -------------------------------------------------------------------------------- /SE/s15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/SE/s15.wav -------------------------------------------------------------------------------- /TODO.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/TODO.MD -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionGraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionGraphic.cpp -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionGraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionGraphic.h -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionInput.cpp -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionInput.h -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionMusicSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionMusicSE.cpp -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionMusicSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionMusicSE.h -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionSystem.cpp -------------------------------------------------------------------------------- /gameLib/CommonFunction/CommonFunctionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/CommonFunction/CommonFunctionSystem.h -------------------------------------------------------------------------------- /gameLib/Graphic/2DImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/2DImage.cpp -------------------------------------------------------------------------------- /gameLib/Graphic/2DImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/2DImage.h -------------------------------------------------------------------------------- /gameLib/Graphic/2DImageArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/2DImageArray.cpp -------------------------------------------------------------------------------- /gameLib/Graphic/2DImageArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/2DImageArray.h -------------------------------------------------------------------------------- /gameLib/Graphic/GLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/GLContext.cpp -------------------------------------------------------------------------------- /gameLib/Graphic/GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/GLContext.h -------------------------------------------------------------------------------- /gameLib/Graphic/PC98Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/PC98Font.cpp -------------------------------------------------------------------------------- /gameLib/Graphic/PC98Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/PC98Font.h -------------------------------------------------------------------------------- /gameLib/Graphic/Th5ExtFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/Th5ExtFont.cpp -------------------------------------------------------------------------------- /gameLib/Graphic/Th5ExtFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/Th5ExtFont.h -------------------------------------------------------------------------------- /gameLib/Graphic/include.old/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include.old/glew.h -------------------------------------------------------------------------------- /gameLib/Graphic/include.old/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include.old/wglew.h -------------------------------------------------------------------------------- /gameLib/Graphic/include/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include/eglew.h -------------------------------------------------------------------------------- /gameLib/Graphic/include/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include/glew.h -------------------------------------------------------------------------------- /gameLib/Graphic/include/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include/glxew.h -------------------------------------------------------------------------------- /gameLib/Graphic/include/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/include/wglew.h -------------------------------------------------------------------------------- /gameLib/Graphic/mygl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Graphic/mygl.h -------------------------------------------------------------------------------- /gameLib/Input/KeyInputDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Input/KeyInputDI.cpp -------------------------------------------------------------------------------- /gameLib/Input/KeyInputDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Input/KeyInputDI.h -------------------------------------------------------------------------------- /gameLib/MMDPlayer/GuruGuruSMF4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/MMDPlayer/GuruGuruSMF4.cpp -------------------------------------------------------------------------------- /gameLib/MMDPlayer/GuruGuruSMF4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/MMDPlayer/GuruGuruSMF4.h -------------------------------------------------------------------------------- /gameLib/MMDPlayer/MMDPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/MMDPlayer/MMDPlayer.cpp -------------------------------------------------------------------------------- /gameLib/MMDPlayer/MMDPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/MMDPlayer/MMDPlayer.h -------------------------------------------------------------------------------- /gameLib/Misc/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Misc/md5.cpp -------------------------------------------------------------------------------- /gameLib/Misc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Misc/md5.h -------------------------------------------------------------------------------- /gameLib/Misc/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Misc/sha1.cpp -------------------------------------------------------------------------------- /gameLib/Misc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Misc/sha1.h -------------------------------------------------------------------------------- /gameLib/PMDPlayer/PMDPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/PMDPlayer/PMDPlayer.cpp -------------------------------------------------------------------------------- /gameLib/PMDPlayer/PMDPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/PMDPlayer/PMDPlayer.h -------------------------------------------------------------------------------- /gameLib/SE/SoundEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/SE/SoundEffect.cpp -------------------------------------------------------------------------------- /gameLib/SE/SoundEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/SE/SoundEffect.h -------------------------------------------------------------------------------- /gameLib/Window/GameWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Window/GameWindow.cpp -------------------------------------------------------------------------------- /gameLib/Window/GameWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/Window/GameWindow.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/BB/BBFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/BB/BBFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/BB/BBFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/BB/BBFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/BFT/BFTFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/BFT/BFTFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/BFT/BFTFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/BFT/BFTFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/CD2CDG/CD2CDGFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/CD2CDG/CD2CDGFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/CD2CDG/CD2CDGFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/CD2CDG/CD2CDGFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/MPN/MPNFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/MPN/MPNFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/MPN/MPNFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/MPN/MPNFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/PI/PIFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/PI/PIFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/PI/PIFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/PI/PIFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/STD/STDFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/STD/STDFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/STD/STDFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/STD/STDFile.h -------------------------------------------------------------------------------- /gameLib/th5DatFile/th5DatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/th5DatFile.cpp -------------------------------------------------------------------------------- /gameLib/th5DatFile/th5DatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/gameLib/th5DatFile/th5DatFile.h -------------------------------------------------------------------------------- /icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/icon2.ico -------------------------------------------------------------------------------- /include/DSUtil/dsutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/DSUtil/dsutil.cpp -------------------------------------------------------------------------------- /include/DSUtil/dsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/DSUtil/dsutil.h -------------------------------------------------------------------------------- /include/DSUtil/dxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/DSUtil/dxutil.cpp -------------------------------------------------------------------------------- /include/DSUtil/dxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/DSUtil/dxutil.h -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4.h -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_C_Dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_C_Dynamic.c -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_C_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_C_Dynamic.h -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_C_Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_C_Static.h -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_Cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_Cpp.h -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_Cpp_Dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_Cpp_Dynamic.cpp -------------------------------------------------------------------------------- /include/GuruGuruSMF4/GuruGuruSMF4_Cpp_Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/GuruGuruSMF4/GuruGuruSMF4_Cpp_Static.cpp -------------------------------------------------------------------------------- /include/PMDWin/PCMMusDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/PMDWin/PCMMusDriver.h -------------------------------------------------------------------------------- /include/PMDWin/PMDWinImort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/PMDWin/PMDWinImort.h -------------------------------------------------------------------------------- /include/cxxmidi/callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/callback.hpp -------------------------------------------------------------------------------- /include/cxxmidi/converters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/converters.hpp -------------------------------------------------------------------------------- /include/cxxmidi/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/event.hpp -------------------------------------------------------------------------------- /include/cxxmidi/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/file.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/3rdparty/RtMidi/RtError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/3rdparty/RtMidi/RtError.h -------------------------------------------------------------------------------- /include/cxxmidi/guts/3rdparty/RtMidi/RtMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/3rdparty/RtMidi/RtMidi.cpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/3rdparty/RtMidi/RtMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/3rdparty/RtMidi/RtMidi.h -------------------------------------------------------------------------------- /include/cxxmidi/guts/3rdparty/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/3rdparty/pstdint.h -------------------------------------------------------------------------------- /include/cxxmidi/guts/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/compiler.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/endianness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/endianness.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/mutex.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/simulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/simulator.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/stdint.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/thread.hpp -------------------------------------------------------------------------------- /include/cxxmidi/guts/unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/guts/unused.hpp -------------------------------------------------------------------------------- /include/cxxmidi/instrument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/instrument.hpp -------------------------------------------------------------------------------- /include/cxxmidi/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/message.hpp -------------------------------------------------------------------------------- /include/cxxmidi/note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/note.hpp -------------------------------------------------------------------------------- /include/cxxmidi/output/abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/output/abstract.hpp -------------------------------------------------------------------------------- /include/cxxmidi/output/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/output/default.hpp -------------------------------------------------------------------------------- /include/cxxmidi/output/linux/alsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/output/linux/alsa.hpp -------------------------------------------------------------------------------- /include/cxxmidi/output/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/output/windows.hpp -------------------------------------------------------------------------------- /include/cxxmidi/player/abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/player/abstract.hpp -------------------------------------------------------------------------------- /include/cxxmidi/player/asynchronous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/player/asynchronous.hpp -------------------------------------------------------------------------------- /include/cxxmidi/player/synchronous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/player/synchronous.hpp -------------------------------------------------------------------------------- /include/cxxmidi/sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/sleep.hpp -------------------------------------------------------------------------------- /include/cxxmidi/sysex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/sysex.hpp -------------------------------------------------------------------------------- /include/cxxmidi/time/duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/time/duration.hpp -------------------------------------------------------------------------------- /include/cxxmidi/time/period.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/time/period.hpp -------------------------------------------------------------------------------- /include/cxxmidi/time/point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/time/point.hpp -------------------------------------------------------------------------------- /include/cxxmidi/track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/track.hpp -------------------------------------------------------------------------------- /include/cxxmidi/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/utils.hpp -------------------------------------------------------------------------------- /include/cxxmidi/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/include/cxxmidi/version.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/main.cpp -------------------------------------------------------------------------------- /practice.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/practice.bmp -------------------------------------------------------------------------------- /replay.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay.bmp -------------------------------------------------------------------------------- /replay/replay00.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay00.rpy -------------------------------------------------------------------------------- /replay/replay01.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay01.rpy -------------------------------------------------------------------------------- /replay/replay02.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay02.rpy -------------------------------------------------------------------------------- /replay/replay03.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay03.rpy -------------------------------------------------------------------------------- /replay/replay04.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay04.rpy -------------------------------------------------------------------------------- /replay/replay05.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay05.rpy -------------------------------------------------------------------------------- /replay/replay06.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay06.rpy -------------------------------------------------------------------------------- /replay/replay07.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay07.rpy -------------------------------------------------------------------------------- /replay/replay16.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay16.rpy -------------------------------------------------------------------------------- /replay/replay17.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay17.rpy -------------------------------------------------------------------------------- /replay/replay18.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay18.rpy -------------------------------------------------------------------------------- /replay/replay19.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay19.rpy -------------------------------------------------------------------------------- /replay/replay39.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/replay/replay39.rpy -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/resource.h -------------------------------------------------------------------------------- /resource/replay.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/resource/replay.bmp -------------------------------------------------------------------------------- /rt5custom/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/resource.h -------------------------------------------------------------------------------- /rt5custom/rt5custom.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.aps -------------------------------------------------------------------------------- /rt5custom/rt5custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.cpp -------------------------------------------------------------------------------- /rt5custom/rt5custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.h -------------------------------------------------------------------------------- /rt5custom/rt5custom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.ico -------------------------------------------------------------------------------- /rt5custom/rt5custom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.rc -------------------------------------------------------------------------------- /rt5custom/rt5custom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.vcxproj -------------------------------------------------------------------------------- /rt5custom/rt5custom.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.vcxproj.filters -------------------------------------------------------------------------------- /rt5custom/rt5custom.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/rt5custom.vcxproj.user -------------------------------------------------------------------------------- /rt5custom/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/small.ico -------------------------------------------------------------------------------- /rt5custom/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/stdafx.cpp -------------------------------------------------------------------------------- /rt5custom/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/stdafx.h -------------------------------------------------------------------------------- /rt5custom/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5custom/targetver.h -------------------------------------------------------------------------------- /rt5sandbox.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.aps -------------------------------------------------------------------------------- /rt5sandbox.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.rc -------------------------------------------------------------------------------- /rt5sandbox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.sln -------------------------------------------------------------------------------- /rt5sandbox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.suo -------------------------------------------------------------------------------- /rt5sandbox.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.vcproj -------------------------------------------------------------------------------- /rt5sandbox.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.vcxproj -------------------------------------------------------------------------------- /rt5sandbox.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.vcxproj.filters -------------------------------------------------------------------------------- /rt5sandbox.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/rt5sandbox.vcxproj.user -------------------------------------------------------------------------------- /selectbg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisp2013/uth05win/HEAD/selectbg.bmp --------------------------------------------------------------------------------