more unit testing of diff xmit

This commit is contained in:
2021-08-03 12:40:12 -04:00
parent 202c5a24ba
commit 3fa782383e
4 changed files with 104 additions and 24 deletions

View File

@@ -117,6 +117,8 @@ public:
// Get a pointer to the specified tangible.
//
// If there's no such tangible, returns nullptr.
//
Tangible *tangible_get(int64_t id);
const Tangible *tangible_get(int64_t id) const;
@@ -133,7 +135,9 @@ public:
// Delete the specified tangible.
//
void tangible_delete(lua_State *L, int64_t id);
// If there's no such tangible, this is a no-op.
//
void tangible_delete(int64_t id);
// Create a login actor.
//
@@ -212,6 +216,10 @@ public:
//
void tangible_walkto(int64_t id, int64_t animid, float x, float y);
// Get the tangible's animation queue as a debug string.
//
std::string tangible_anim_debug_string(int64_t id) const;
// Get a list of all existing tangibles as a comma-separated string.
//
std::string tangible_ids_debug_string() const;