Dawn/src/dawnrose/scene/components/entity/EntityFaction.hpp
2023-03-30 21:43:13 -07:00

23 lines
455 B
C++

// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/SceneItemComponent.hpp"
namespace Dawn {
enum Faction {
FACTION_NONE,
FACTION_ENEMY,
FACTION_PLAYER
};
class EntityFaction : public SceneItemComponent {
public:
// @optional
enum Faction faction = FACTION_NONE;
EntityFaction(SceneItem* item);
};
}