添加spdlog 和 glfw
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
//
|
||||
// Created by sfd on 25-11-15.
|
||||
//
|
||||
|
||||
#ifndef EDITOR_H
|
||||
#define EDITOR_H
|
||||
|
||||
|
||||
|
||||
#endif //EDITOR_H
|
||||
Reference in New Issue
Block a user