aboutsummaryrefslogtreecommitdiff
path: root/source/EditorAttachmentImpl.hpp
blob: 258e98760b2e54adb4a4d19205dc22695a6fd522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#pragma once

#include "EditorAttachment.hpp"
#include "GameObject.hpp"
#include "Player.hpp"

#include <memory>

class EaGameObject : public EditorAttachment {
public:
	static std::unique_ptr<EditorAttachment> Create(GameObject* object);
};

class EaPlayer : public EditorAttachment {
public:
};

class EaLevelWrapper : public EditorAttachment {
public:
};

class EaIresObject : public EditorAttachment {
public:
	std::string nameEditingScratch;
	bool isEditingName = false;
};

class EaShader : public EditorAttachment {
public:
	Shader* shader;
};

class EaMaterial : public EditorAttachment {
public:
	std::string editingScratch;
	bool isEditingName = false;
};