18 lines
339 B
C++
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
|