diff options
author | tom barrett <spalf0@gmail.com> | 2019-07-23 00:54:35 -0500 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2019-07-23 03:48:58 -0500 |
commit | 2ee665ef6954f6eab9f0398c19284b3ea4c8246d (patch) | |
tree | a64d57f2fecbded780d93f464b36354f432c3033 /src/entity.rs | |
parent | f351a002b66ae8a4b73588b7ffdffc69623181f3 (diff) |
state -> world, moved struct members to private
Diffstat (limited to 'src/entity.rs')
-rw-r--r-- | src/entity.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity.rs b/src/entity.rs index ae3a236..3489671 100644 --- a/src/entity.rs +++ b/src/entity.rs @@ -13,7 +13,7 @@ pub struct Entity { pub position: Point2<f32>, pub spawn: Point2<f32>, pub action: Action, - pub map_dimensions: (f32, f32), + map_dimensions: (f32, f32), } impl Entity { |