Base files added

May have an idea of what caused problem
This commit is contained in:
2025-11-21 23:38:16 -05:00
parent ff9fcf7aa7
commit c91d73ed33
13 changed files with 132 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Character.h"
#include "DDICharacter.generated.h"
UCLASS()
class OPENCONFLICT_API ADDICharacter : public ACharacter
{
GENERATED_BODY()
public:
// Sets default values for this character's properties
ADDICharacter();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
// Called to bind functionality to input
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
};