Dicewars-Siedler/src/engine/core/ECS/ModelStateComponent.h
2026-02-14 08:35:32 +01:00

18 lines
339 B
C++

//
// Created by sebastian on 14.02.26.
//
#ifndef DICEWARS_SIEDLER_MODELSTATECOMPONENT_H
#define DICEWARS_SIEDLER_MODELSTATECOMPONENT_H
#include <string>
#include "Component.h"
class ModelStateComponent : public Component{
public:
std::unordered_map<std::string, float> params;
};
#endif //DICEWARS_SIEDLER_MODELSTATECOMPONENT_H