Added initial player settings, including movement logic. Created Enemy class with basic structure. Implemented input handling for movement and camera control.
18 lines
290 B
C++
18 lines
290 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Characters/ExoCharacterBase.h"
|
|
#include "ExoEnemy.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class EXO_API AExoEnemy : public AExoCharacterBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
};
|