Added BattleVideoSaved request type to enum.

This commit is contained in:
Greg Edwards
2014-07-31 20:23:24 -04:00
parent 9baf3e1141
commit e6b8233fb3

View File

@@ -283,6 +283,7 @@ namespace PkmnFoundations.GlobalTerminalService
case RequestTypes5.BattleVideoUpload:
case RequestTypes5.BattleVideoSearch:
case RequestTypes5.BattleVideoWatch:
case RequestTypes5.BattleVideoSaved:
return 0x55;
default:
return 0x00;
@@ -305,6 +306,7 @@ namespace PkmnFoundations.GlobalTerminalService
BattleVideoUpload = 0xf0,
BattleVideoSearch = 0xf1,
BattleVideoWatch = 0xf2
BattleVideoWatch = 0xf2,
BattleVideoSaved = 0xf3
}
}