├── .gitignore ├── .gitmodules ├── README.md ├── include └── pt │ ├── AreaObj │ └── JumpSwitchArea.h │ ├── Enemy │ ├── Anagon.h │ ├── BallBeamer.h │ ├── CocoSambo.h │ ├── DharmaSambo.h │ ├── JumpGuarder.h │ ├── Mogu.h │ ├── MoguStone.h │ └── Poihana.h │ ├── Extras │ ├── ExtPowerStarColors.h │ ├── ExtQuakeEffectArea.h │ └── ExtSuperSpinDriverGreen.h │ ├── Factories │ ├── ExtNameObjFactory.h │ ├── ExtProjectMapCreator.h │ └── ExtSceneObjHolder.h │ ├── Map │ ├── CollectSwitchCtrl.h │ ├── PlayerSwitchCtrl.h │ └── SensorDetector.h │ ├── MapObj │ ├── Banekiti.h │ ├── BlueChip.h │ ├── ChooChooTrain.h │ ├── CrystalSwitch.h │ ├── DeadLeaves.h │ ├── FirePressureRadiate.h │ ├── HitWallTimerSwitch.h │ ├── Jiraira.h │ ├── LavaBallRisingPlanetLava.h │ ├── NewMorphItemNeo.h │ ├── PomponPlant.h │ ├── PowerStarSpawner.h │ ├── ScrewSwitchBase.h │ ├── TransparentWall.h │ ├── WatchTowerRotateStep.h │ └── WaterLeakPipe.h │ ├── Util.h │ └── Util │ ├── ActorUtil.h │ ├── MathUtil.h │ ├── PlayerUtil.h │ └── TalkUtil.h ├── objectdb.json └── source ├── init.cpp ├── pt ├── AreaObj │ └── JumpSwitchArea.cpp ├── Enemy │ ├── Anagon.cpp │ ├── BallBeamer.cpp │ ├── CocoSambo.cpp │ ├── DharmaSambo.cpp │ ├── JumpGuarder.cpp │ ├── Mogu.cpp │ ├── MoguStone.cpp │ └── Poihana.cpp ├── Extras │ ├── ExtDummyDisplayModel.cpp │ ├── ExtPowerStarColors.cpp │ ├── ExtQuakeEffectArea.cpp │ ├── ExtShellfishItems.cpp │ ├── ExtSuperSpinDriverGreen.cpp │ ├── MiscExtensions.cpp │ └── VanillaBugfixes.cpp ├── Factories │ ├── ExtNameObjFactory.cpp │ ├── ExtProjectMapCreator.cpp │ └── ExtSceneObjHolder.cpp ├── Map │ ├── CollectSwitchCtrl.cpp │ ├── PlayerSwitchCtrl.cpp │ └── SensorDetector.cpp ├── MapObj │ ├── Banekiti.cpp │ ├── BlueChip.cpp │ ├── ChooChooTrain.cpp │ ├── CrystalSwitch.cpp │ ├── DeadLeaves.cpp │ ├── FirePressureRadiate.cpp │ ├── HitWallTimerSwitch.cpp │ ├── Jiraira.cpp │ ├── LavaBallRisingPlanetLava.cpp │ ├── NewMorphItemNeo.cpp │ ├── PomponPlant.cpp │ ├── PowerStarSpawner.cpp │ ├── ScrewSwitchBase.cpp │ ├── TransparentWall.cpp │ ├── WatchTowerRotateStep.cpp │ └── WaterLeakPipe.cpp ├── Ride │ └── SwingRope.cpp └── Util │ ├── ActorUtil.cpp │ ├── PlayerUtil.cpp │ └── TalkUtil.cpp └── syati ├── GstRecord.cpp └── PadRecord.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/README.md -------------------------------------------------------------------------------- /include/pt/AreaObj/JumpSwitchArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/AreaObj/JumpSwitchArea.h -------------------------------------------------------------------------------- /include/pt/Enemy/Anagon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/Anagon.h -------------------------------------------------------------------------------- /include/pt/Enemy/BallBeamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/BallBeamer.h -------------------------------------------------------------------------------- /include/pt/Enemy/CocoSambo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/CocoSambo.h -------------------------------------------------------------------------------- /include/pt/Enemy/DharmaSambo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/DharmaSambo.h -------------------------------------------------------------------------------- /include/pt/Enemy/JumpGuarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/JumpGuarder.h -------------------------------------------------------------------------------- /include/pt/Enemy/Mogu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/Mogu.h -------------------------------------------------------------------------------- /include/pt/Enemy/MoguStone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/MoguStone.h -------------------------------------------------------------------------------- /include/pt/Enemy/Poihana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Enemy/Poihana.h -------------------------------------------------------------------------------- /include/pt/Extras/ExtPowerStarColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Extras/ExtPowerStarColors.h -------------------------------------------------------------------------------- /include/pt/Extras/ExtQuakeEffectArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Extras/ExtQuakeEffectArea.h -------------------------------------------------------------------------------- /include/pt/Extras/ExtSuperSpinDriverGreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Extras/ExtSuperSpinDriverGreen.h -------------------------------------------------------------------------------- /include/pt/Factories/ExtNameObjFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Factories/ExtNameObjFactory.h -------------------------------------------------------------------------------- /include/pt/Factories/ExtProjectMapCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Factories/ExtProjectMapCreator.h -------------------------------------------------------------------------------- /include/pt/Factories/ExtSceneObjHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Factories/ExtSceneObjHolder.h -------------------------------------------------------------------------------- /include/pt/Map/CollectSwitchCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Map/CollectSwitchCtrl.h -------------------------------------------------------------------------------- /include/pt/Map/PlayerSwitchCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Map/PlayerSwitchCtrl.h -------------------------------------------------------------------------------- /include/pt/Map/SensorDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Map/SensorDetector.h -------------------------------------------------------------------------------- /include/pt/MapObj/Banekiti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/Banekiti.h -------------------------------------------------------------------------------- /include/pt/MapObj/BlueChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/BlueChip.h -------------------------------------------------------------------------------- /include/pt/MapObj/ChooChooTrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/ChooChooTrain.h -------------------------------------------------------------------------------- /include/pt/MapObj/CrystalSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/CrystalSwitch.h -------------------------------------------------------------------------------- /include/pt/MapObj/DeadLeaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/DeadLeaves.h -------------------------------------------------------------------------------- /include/pt/MapObj/FirePressureRadiate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/FirePressureRadiate.h -------------------------------------------------------------------------------- /include/pt/MapObj/HitWallTimerSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/HitWallTimerSwitch.h -------------------------------------------------------------------------------- /include/pt/MapObj/Jiraira.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/Jiraira.h -------------------------------------------------------------------------------- /include/pt/MapObj/LavaBallRisingPlanetLava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/LavaBallRisingPlanetLava.h -------------------------------------------------------------------------------- /include/pt/MapObj/NewMorphItemNeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/NewMorphItemNeo.h -------------------------------------------------------------------------------- /include/pt/MapObj/PomponPlant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/PomponPlant.h -------------------------------------------------------------------------------- /include/pt/MapObj/PowerStarSpawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/PowerStarSpawner.h -------------------------------------------------------------------------------- /include/pt/MapObj/ScrewSwitchBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/ScrewSwitchBase.h -------------------------------------------------------------------------------- /include/pt/MapObj/TransparentWall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/TransparentWall.h -------------------------------------------------------------------------------- /include/pt/MapObj/WatchTowerRotateStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/WatchTowerRotateStep.h -------------------------------------------------------------------------------- /include/pt/MapObj/WaterLeakPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/MapObj/WaterLeakPipe.h -------------------------------------------------------------------------------- /include/pt/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Util.h -------------------------------------------------------------------------------- /include/pt/Util/ActorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Util/ActorUtil.h -------------------------------------------------------------------------------- /include/pt/Util/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Util/MathUtil.h -------------------------------------------------------------------------------- /include/pt/Util/PlayerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Util/PlayerUtil.h -------------------------------------------------------------------------------- /include/pt/Util/TalkUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/include/pt/Util/TalkUtil.h -------------------------------------------------------------------------------- /objectdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/objectdb.json -------------------------------------------------------------------------------- /source/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/init.cpp -------------------------------------------------------------------------------- /source/pt/AreaObj/JumpSwitchArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/AreaObj/JumpSwitchArea.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/Anagon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/Anagon.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/BallBeamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/BallBeamer.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/CocoSambo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/CocoSambo.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/DharmaSambo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/DharmaSambo.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/JumpGuarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/JumpGuarder.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/Mogu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/Mogu.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/MoguStone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/MoguStone.cpp -------------------------------------------------------------------------------- /source/pt/Enemy/Poihana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Enemy/Poihana.cpp -------------------------------------------------------------------------------- /source/pt/Extras/ExtDummyDisplayModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/ExtDummyDisplayModel.cpp -------------------------------------------------------------------------------- /source/pt/Extras/ExtPowerStarColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/ExtPowerStarColors.cpp -------------------------------------------------------------------------------- /source/pt/Extras/ExtQuakeEffectArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/ExtQuakeEffectArea.cpp -------------------------------------------------------------------------------- /source/pt/Extras/ExtShellfishItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/ExtShellfishItems.cpp -------------------------------------------------------------------------------- /source/pt/Extras/ExtSuperSpinDriverGreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/ExtSuperSpinDriverGreen.cpp -------------------------------------------------------------------------------- /source/pt/Extras/MiscExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/MiscExtensions.cpp -------------------------------------------------------------------------------- /source/pt/Extras/VanillaBugfixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Extras/VanillaBugfixes.cpp -------------------------------------------------------------------------------- /source/pt/Factories/ExtNameObjFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Factories/ExtNameObjFactory.cpp -------------------------------------------------------------------------------- /source/pt/Factories/ExtProjectMapCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Factories/ExtProjectMapCreator.cpp -------------------------------------------------------------------------------- /source/pt/Factories/ExtSceneObjHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Factories/ExtSceneObjHolder.cpp -------------------------------------------------------------------------------- /source/pt/Map/CollectSwitchCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Map/CollectSwitchCtrl.cpp -------------------------------------------------------------------------------- /source/pt/Map/PlayerSwitchCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Map/PlayerSwitchCtrl.cpp -------------------------------------------------------------------------------- /source/pt/Map/SensorDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Map/SensorDetector.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/Banekiti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/Banekiti.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/BlueChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/BlueChip.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/ChooChooTrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/ChooChooTrain.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/CrystalSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/CrystalSwitch.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/DeadLeaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/DeadLeaves.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/FirePressureRadiate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/FirePressureRadiate.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/HitWallTimerSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/HitWallTimerSwitch.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/Jiraira.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/Jiraira.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/LavaBallRisingPlanetLava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/LavaBallRisingPlanetLava.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/NewMorphItemNeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/NewMorphItemNeo.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/PomponPlant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/PomponPlant.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/PowerStarSpawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/PowerStarSpawner.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/ScrewSwitchBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/ScrewSwitchBase.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/TransparentWall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/TransparentWall.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/WatchTowerRotateStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/WatchTowerRotateStep.cpp -------------------------------------------------------------------------------- /source/pt/MapObj/WaterLeakPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/MapObj/WaterLeakPipe.cpp -------------------------------------------------------------------------------- /source/pt/Ride/SwingRope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Ride/SwingRope.cpp -------------------------------------------------------------------------------- /source/pt/Util/ActorUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Util/ActorUtil.cpp -------------------------------------------------------------------------------- /source/pt/Util/PlayerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Util/PlayerUtil.cpp -------------------------------------------------------------------------------- /source/pt/Util/TalkUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/pt/Util/TalkUtil.cpp -------------------------------------------------------------------------------- /source/syati/GstRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/syati/GstRecord.cpp -------------------------------------------------------------------------------- /source/syati/PadRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunakazeKun/SMG2-Project-Template/HEAD/source/syati/PadRecord.cpp --------------------------------------------------------------------------------