2024-08-01 23:32:51 +00:00
|
|
|
#include <iostream>
|
2024-07-30 16:57:32 +00:00
|
|
|
#include "Editor.h"
|
2024-03-27 13:04:19 +00:00
|
|
|
|
2024-07-30 16:57:32 +00:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2024-08-01 23:32:51 +00:00
|
|
|
Editor::Init();
|
2024-08-24 07:42:06 +00:00
|
|
|
std::cout << "Argument count: " << argc << std::endl;
|
|
|
|
for(int i = 0; i < argc; i++)
|
|
|
|
std::cout << "Arguments: " << argv[i] << std::endl;
|
2024-07-30 16:57:32 +00:00
|
|
|
}
|