ExoWest/Source/Exo/Private/Characters/ExoCharacterBase.cpp
Kubson96 672b19326b feat: gun attaching to socket
Added FirstPersonArm from Unreal FPS template.
Modified ShootingComponent for using socket in character.
2025-04-22 23:28:59 +02:00

19 lines
273 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Characters/ExoCharacterBase.h"
AExoCharacterBase::AExoCharacterBase()
{
PrimaryActorTick.bCanEverTick = false;
}
void AExoCharacterBase::BeginPlay()
{
Super::BeginPlay();
}