Misc changes

This commit is contained in:
baz 2025-06-12 23:16:39 +01:00
parent 6475e1e183
commit 7d8c59d3fe
6 changed files with 51 additions and 6 deletions

BIN
Content/Player/BP_PlayerCharacter.uasset (Stored with Git LFS)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Content/Widgets/MainMenu/BP_SelectWeaponWidget.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,20 @@
// Louis Hobbs | 2024-2025
#include "SelectWeaponWidget.h"
#include "SlateOptMacros.h"
BEGIN_SLATE_FUNCTION_BUILD_OPTIMIZATION
void SelectWeaponWidget::Construct(const FArguments& InArgs)
{
/*
ChildSlot
[
// Populate the widget
];
*/
}
END_SLATE_FUNCTION_BUILD_OPTIMIZATION

View File

@ -0,0 +1,22 @@
// Louis Hobbs | 2024-2025
#pragma once
#include "CoreMinimal.h"
#include "Widgets/SCompoundWidget.h"
/**
*
*/
class VAMPIRES_API SelectWeaponWidget : public SCompoundWidget
{
public:
SLATE_BEGIN_ARGS(SelectWeaponWidget)
{
}
SLATE_END_ARGS()
/** Constructs this widget with InArgs */
void Construct(const FArguments& InArgs);
};