diff options
author | Alec Thomas <alec@swapoff.org> | 2013-10-12 13:07:53 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-10-12 13:07:53 -0400 |
commit | a0a4753cc51be1976f4b64be2dab4d13490facb2 (patch) | |
tree | 0cfbff2b41a3d6430b000501e021d17dd4865d1e | |
parent | 21ba97c1b7df9909bffa36b573fb3451338cdf10 (diff) |
Allow creation of Entity::Id from uint64_t.
-rw-r--r-- | entityx/Entity.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h index 8edd109..cfcf12c 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -45,6 +45,7 @@ class Entity { public: struct Id { Id() : id_(0) {} + explicit Id(uint64_t id) : id_(id) {} Id(uint32_t index, uint32_t version) : id_(uint64_t(index) | uint64_t(version) << 32UL) {} uint64_t id() const { return id_; } @@ -76,7 +77,7 @@ public: /** * Check if Entity handle is invalid. */ - operator bool () const { + operator bool() const { return valid(); } |