Inital Commit

This commit is contained in:
Timothy O'Barr
2026-08-07 13:10:07 -05:00
commit 34f7d3f7bb
72 changed files with 31475 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
#include "editor.h"
+22
View File
@@ -0,0 +1,22 @@
#include "playerEditor.h"
#include <vector>
void PlayerEditor::Create()
{
if (toEdit == nullptr)
{
toEdit = new PlayerE();
}
players.push_back(*toEdit);
}
void PlayerEditor::Edit()
{
printf("Options: %s\n");
for (auto &command : commands.begin())
{
printf("%s\n", command.c_str());
}
}
+21
View File
@@ -0,0 +1,21 @@
#include "playerEditor.h"
void Create()
{
if (toEdit == nullptr)
{
toEdit = new PlayerE();
}
players.push_back(toEdit);
}
void Edit()
{
printf("Options: %s\n");
for (auto command : commands.begin())'
{
printf("%s\n", command.c_str());
}
}