Skip to content

Commit

Permalink
docs: Fix the swapped docs for Tilemap attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
kfischer-okarin committed Feb 26, 2023
1 parent 58e0f7e commit d46347d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/dragon_skeleton/tilemap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ class Tilemap
# The y coordinate of the bottom left corner of the tilemap
attr_accessor :y
# The width of each cell in the tilemap
attr_reader :grid_w
attr_reader :cell_w
# The height of each cell in the tilemap
attr_reader :grid_h
attr_reader :cell_h
# The width of the tilemap in cells
attr_reader :cell_w
attr_reader :grid_w
# The height of the tilemap in cells
attr_reader :cell_h
attr_reader :grid_h

# Creates a new tilemap.
#
Expand Down

0 comments on commit d46347d

Please sign in to comment.