2024-02-25 15:46:47 +01:00
|
|
|
#pragma once
|
2023-06-20 14:33:09 +10:00
|
|
|
|
|
|
|
#include "StarLua.hpp"
|
|
|
|
#include "StarEntity.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
namespace LuaBindings {
|
|
|
|
LuaCallbacks makeEntityCallbacks(Entity const* entity);
|
|
|
|
|
|
|
|
namespace EntityCallbacks {
|
|
|
|
EntityId id(Entity const* entity);
|
|
|
|
LuaTable damageTeam(Entity const* entity, LuaEngine& engine);
|
|
|
|
bool isValidTarget(Entity const* entity, EntityId entityId);
|
|
|
|
Vec2F distanceToEntity(Entity const* entity, EntityId entityId);
|
|
|
|
bool entityInSight(Entity const* entity, EntityId entityId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|