Dicewars-Siedler/src/game/hexWorld/ecs/components/OwnerComponent.h
2026-02-14 09:11:06 +01:00

20 lines
359 B
C++

//
// Created by sebastian on 08.02.26.
//
#ifndef OWNERCOMPONENT_H
#define OWNERCOMPONENT_H
#include "../../../../engine/core/ECS/Component.h"
#include "../../../player/Player.h"
class OwnerComponent : public Component{
public:
PlayerID playerID;
explicit OwnerComponent(PlayerID playerID) : playerID(playerID) {};
};
#endif //OWNERCOMPONENT_H