test commit for branch

This commit is contained in:
Ji Yoon Rhee 2023-10-15 19:38:15 -04:00
parent d2850b4258
commit 0abfca2e0c
8 changed files with 89 additions and 45 deletions

View File

@ -1,8 +1,8 @@
{
"SourceFiles": [
"C:\\Users\\panha\\Documents\\GitHub\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2\\hwanyoung2.Build.cs",
"C:\\Users\\panha\\Documents\\GitHub\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2.Target.cs",
"C:\\Users\\panha\\Documents\\GitHub\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2Editor.Target.cs"
"D:\\GitHub\\Personal Projects\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2\\hwanyoung2.Build.cs",
"D:\\GitHub\\Personal Projects\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2.Target.cs",
"D:\\GitHub\\Personal Projects\\Illusion-UE5\\hwanyoung2\\Source\\hwanyoung2Editor.Target.cs"
],
"EngineVersion": "5.1.1"
}

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<None Include="..\..\hwanyoung2.uproject" />
<Filter Include="Source">
@ -93,6 +93,12 @@
<ClInclude Include="..\..\Source\hwanyoung2\HYCharacGameplayAbility.h">
<Filter>Source\hwanyoung2</Filter>
</ClInclude>
<ClCompile Include="..\..\Source\hwanyoung2\HYGameStateBase.cpp">
<Filter>Source\hwanyoung2</Filter>
</ClCompile>
<ClInclude Include="..\..\Source\hwanyoung2\HYGameStateBase.h">
<Filter>Source\hwanyoung2</Filter>
</ClInclude>
<ClCompile Include="..\..\Source\hwanyoung2\HYPlayerCharacAttributeSet.cpp">
<Filter>Source\hwanyoung2</Filter>
</ClCompile>

View File

@ -0,0 +1,5 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "HYGameStateBase.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 "GameFramework/GameStateBase.h"
#include "HYGameStateBase.generated.h"
/**
*
*/
UCLASS()
class HWANYOUNG2_API AHYGameStateBase : public AGameStateBase
{
GENERATED_BODY()
};