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