blob: 8c1e898f7a558d392c790b6f42aa1a946e4de71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#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);
}
}
}
|