fix cpp files after Vova

This commit is contained in:
2020-01-28 16:30:49 +05:00
parent 0c7f444912
commit 452b28475d
3 changed files with 27 additions and 0 deletions
Binary file not shown.
+12
View File
@@ -0,0 +1,12 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "MyClass.h"
MyClass::MyClass()
{
}
MyClass::~MyClass()
{
}
+15
View File
@@ -0,0 +1,15 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
/**
*
*/
class RAILWAYWORKER_API MyClass
{
public:
MyClass();
~MyClass();
};