Files
Nuake-custom/Nuake/PrefabComponent.h
2021-07-25 15:08:36 -04:00

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;
};
}