sln added test

This commit is contained in:
MarcoHampel
2023-10-09 19:21:04 -04:00
parent ccc6e270ed
commit 6d5a5c12a0
4 changed files with 701 additions and 2 deletions

View File

@ -0,0 +1,14 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "TestClass.h"
TestClass::TestClass()
{
}
TestClass::~TestClass()
{
}

View File

@ -0,0 +1,15 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
/**
*
*/
class STATION_OBSCURUM_API TestClass
{
public:
TestClass();
~TestClass();
};