Cleaning up and writing tests

This commit is contained in:
2025-10-02 21:45:52 -06:00
parent ed3cd08130
commit 279658f3e5
17 changed files with 584 additions and 56 deletions
+14
View File
@@ -0,0 +1,14 @@
# Nathan Hinton 2 Oct 2025
# Class for the player. For now does not do much.
class Player
attr_reader :name
# initializes with just the player name.
#
# @param name [String] The name of the player
def initialize(name)
@name = name
end
end