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:
17
src/ObjCommon/Weapon/GenericAccuracyGraph.h
Normal file
17
src/ObjCommon/Weapon/GenericAccuracyGraph.h
Normal 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;
|
||||
};
|
Reference in New Issue
Block a user