mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
Removed unused files
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
namespace Nuake
|
||||
{
|
||||
class JoltImplementation
|
||||
{
|
||||
|
||||
};
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
#include "src/Resource/Model.h"
|
||||
|
||||
namespace Nuake
|
||||
{
|
||||
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
#pragma once
|
||||
#include "src/Core/Core.h"
|
||||
|
||||
#include "src/Resource/Resource.h"
|
||||
#include "src/Resource/Serializable.h"
|
||||
|
||||
namespace Nuake
|
||||
{
|
||||
class Mesh;
|
||||
|
||||
class Model : Resource, ISerializable
|
||||
{
|
||||
private:
|
||||
std::vector<Ref<Mesh>> m_Meshes;
|
||||
|
||||
public:
|
||||
Model();
|
||||
~Model();
|
||||
|
||||
bool LoadModel(const std::string& path);
|
||||
|
||||
std::vector<Ref<Mesh>>& GetMeshes();
|
||||
|
||||
json Serialize() override;
|
||||
bool Deserialize(const std::string& data) override;
|
||||
};
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
#include "ParticleEmitter.h"
|
||||
|
||||
namespace Nuake
|
||||
{
|
||||
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
#pragma once
|
||||
#include "src/Resource/Serializable.h"
|
||||
|
||||
namespace Nuake
|
||||
{
|
||||
class ParticleEmitter
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
json Serialize();
|
||||
bool Deserialize(const std::string& str);
|
||||
};
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
#pragma once
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#include "src/Scene/Entities/Entity.h"
|
||||
|
||||
namespace Nuake {
|
||||
class PrefabComponent
|
||||
{
|
||||
public:
|
||||
Ref<Prefab> PrefabInstance;
|
||||
|
||||
};
|
||||
}
|
||||
@@ -1,2 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
@@ -20,5 +20,4 @@
|
||||
#include "ParentComponent.h"
|
||||
#include "NameComponent.h"
|
||||
#include "BoxCollider.h"
|
||||
#include "ParticleEmitter.h"
|
||||
#include "../Entities/Entity.h"
|
||||
|
||||
Reference in New Issue
Block a user