Compare commits

...

4 Commits

Author SHA1 Message Date
baz 83178d863b Create MainMenuUIWidget 2023-10-31 23:05:29 +00:00
baz 388d78b64c Create Rifle Weapon 2023-10-31 23:04:46 +00:00
baz a81577b1a8 Create Pistol Weapon 2023-10-31 23:04:36 +00:00
baz 445b65d7f0 Edit Machinegun Weapon 2023-10-31 23:04:14 +00:00
9 changed files with 41 additions and 4 deletions

BIN
Content/UI/MainMenu/MainMenuUIWidget.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Content/Weapons/Pistol/Pistol.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Weapons/Pistol/PistolPickup.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Weapons/Rifle/Rifle.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Weapons/Rifle/RiflePickup.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,5 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "MainMenuUIWidget.h"

View File

@ -0,0 +1,17 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "MainMenuUIWidget.generated.h"
/**
*
*/
UCLASS()
class NAKATOMI_API UMainMenuUIWidget : public UUserWidget
{
GENERATED_BODY()
};