More cleanups

This commit is contained in:
2026-08-21 18:15:19 -05:00
parent be5a4b9c46
commit b1e87868c8
6 changed files with 0 additions and 88 deletions
-12
View File
@@ -1,12 +0,0 @@
#pragma once
#include <iostream>
#include <string>
class Editor
{
private:
public:
};
-39
View File
@@ -1,39 +0,0 @@
#pragma once
#include <iostream>
#include <fstream>
#include <string.h>
#include <memory>
#include <vector>
#include "Extern/json.hpp"
#include "Creature.h"
struct PlayerE : Creature
{
int id;
int level;
std::vector<Stat> stats;
std::string name;
std::string description;
void Init();
void LevelUp();
void Die();
void TakeDamage(int damageType, float damage);
float GetHealth();
}
class PlayerEditor
{
private:
Player *toEdit;
std::vector<PlayerE> players;
std::vector<std::string> commands;
public:
void Create();
void Edit();
bool Save();
};