Hi,when i try to create a c++ class( an actor one) i get this message:
then i am being redirected on the visual studio code saying this
// Fill out your copyright notice in the Description page of Project Settings.
#include “MovingPlatform.h”
// Sets default values
AMovingPlatform::AMovingPlatform()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
}
// Called when the game starts or when spawned
void AMovingPlatform::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void AMovingPlatform::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
And i tried reinstalling, and much more but nothing works=(
can you help me please =)