Commit most of the source code

This commit is contained in:
2023-06-08 17:10:14 -04:00
parent 1e96e72a6e
commit 7fb8c5fefa
291 changed files with 1411 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameStateBase.h"
#include "MyLuprexGameStateBase.generated.h"
/**
*
*/
UCLASS()
class INTEGRATIONV7_API AMyLuprexGameStateBase : public AGameStateBase
{
GENERATED_BODY()
public:
virtual void BeginPlay() override;
virtual void Tick(float) override;
};