Skip to content

Commit

Permalink
final final
Browse files Browse the repository at this point in the history
  • Loading branch information
sbue committed May 3, 2017
1 parent c101b69 commit 8820257
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 1 deletion.
Binary file modified Content/FirstPersonBP/Black.uasset
Binary file not shown.
Binary file modified Content/FirstPersonBP/Blueprints/FirstPersonCharacter.uasset
Binary file not shown.
Binary file modified Content/FirstPersonBP/Maps/FirstPersonExampleMap.umap
Binary file not shown.
Binary file added Content/FirstPersonBP/PInk.uasset
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/RocketChef/RobotCharacter2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void ARobotCharacter2::GetRecipe()
{
FuelTempEnum = static_cast<EFuelTempEnum>(rand() % 2);
FuelColorEnum = static_cast<EFuelColorEnum>(rand() % 7);
FuelFlavorEnum = static_cast<EFuelFlavorEnum>(rand() % 3);
FuelFlavorEnum = static_cast<EFuelFlavorEnum>(rand() % 4);
}

bool ARobotCharacter2::CheckRecipe(EFuelTempEnum fuelTemp, EFuelColorEnum fuelColor, EFuelFlavorEnum fuelFlavor)
Expand Down
1 change: 1 addition & 0 deletions Source/RocketChef/RobotCharacter2.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ UENUM(BlueprintType) //"BlueprintType" is essential to include
enum class EFuelFlavorEnum : uint8
{
FF_Salty UMETA(DisplayName = "Salty"),
FF_Sugary UMETA(DisplayName = "Sugary"),
FF_Spicy UMETA(DisplayName = "Spicy"),
FF_Peppery UMETA(DisplayName = "Peppery"),
FF_None UMETA(DisplayName = "None")
Expand Down

0 comments on commit 8820257

Please sign in to comment.