10 lines
153 B
C++
10 lines
153 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "src/Scene/Entities/Entity.h"
|
|
class PrefabComponent {
|
|
public:
|
|
Ref<Prefab> PrefabInstance;
|
|
|
|
}; |