HAxis sos

This commit is contained in:
guus
2018-08-11 16:46:35 +02:00
commit 510654f8a1
480 changed files with 54126 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Project Lab - NHTV IGAD
//////////////////////////////////////////
// Author: Yoshi van Belkom - 130118
//////////////////////////////////////////
// Factory for making a Skill asset.
//////////////////////////////////////////
#pragma once
#include "SkillFactory.generated.h"
UCLASS()
class USkillFactory : public UFactory
{
GENERATED_UCLASS_BODY()
public:
// UFactory interface
virtual UObject* FactoryCreateNew( UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn ) override;
// End of UFactory interface
};

View File

@@ -0,0 +1,21 @@
// Project Lab - NHTV IGAD
//////////////////////////////////////////
// Author: Yoshi van Belkom - 130118
//////////////////////////////////////////
// Factory for making a Skill Tree asset.
//////////////////////////////////////////
#pragma once
#include "SkillTreeFactory.generated.h"
UCLASS()
class USkillTreeFactory : public UFactory
{
GENERATED_UCLASS_BODY()
public:
// UFactory interface
virtual UObject* FactoryCreateNew( UClass* a_class, UObject* a_parent, FName a_name, EObjectFlags a_flags, UObject* a_context, FFeedbackContext* a_warn ) override;
// End of UFactory interface
};