2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-01 16:51:56 +00:00

chore: add writer for accuracy graphs

This commit is contained in:
Jan
2024-05-18 23:38:57 +02:00
parent 3201cefd5b
commit 5c0d1e4d99
3 changed files with 95 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#pragma once
#include <string>
#include <vector>
class GenericAccuracyGraphKnot
{
public:
float x;
float y;
};
class GenericAccuracyGraph
{
public:
std::string name;
std::vector<GenericAccuracyGraphKnot> knots;
};