添加spdlog 和 glfw

This commit is contained in:
2025-11-18 13:52:27 +08:00
parent 0e48af235d
commit 122f500a76
27 changed files with 884 additions and 66 deletions

View File

@ -2,11 +2,21 @@
// Created by sfd on 25-11-15.
//
#include "Editor.h"
#include <iostream>
int main()
#include "Prism/Core/Application.h"
#include "Prism/Core/EntryPoint.h"
class Editor : public Prism::Application
{
std::cout << "Hello World!\n";
}
public:
Editor()
{
}
};
Prism::Application* Prism::CreateApplication()
{
return new Editor();
}

View File

@ -1,10 +0,0 @@
//
// Created by sfd on 25-11-15.
//
#ifndef EDITOR_H
#define EDITOR_H
#endif //EDITOR_H