20 lines
485 B
C++
20 lines
485 B
C++
// Project Lab - NHTV IGAD
|
|
//////////////////////////////////////////
|
|
// Author: Yoshi van Belkom - 130118
|
|
//////////////////////////////////////////
|
|
// The Skill Tree Editor mode class.
|
|
//////////////////////////////////////////
|
|
|
|
#include "UnrealEd.h"
|
|
#include "EditorModeRegistry.h"
|
|
|
|
#pragma once
|
|
|
|
class FSkillTreeEditMode : public FEdMode
|
|
{
|
|
public:
|
|
//The ID of the Skill Tree Editor.
|
|
static const FEditorModeID EM_skillTree;
|
|
public:
|
|
FSkillTreeEditMode(){};
|
|
}; |