blob: 32618b10aee29a5090f6dc054e44ee4a196d8d75 (
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
|
#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 EaShader : public EditorAttachment {
public:
Shader* shader;
std::string name;
};
|