change default size to be more accurate

This commit is contained in:
Jill 2023-06-01 20:40:52 +03:00
parent bb4175d279
commit 5000e08dd6
Signed by: oat
GPG Key ID: 33489AA58A955108
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ module Funfriend::ConfigMan
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
"window" => { "window" => {
"funfriend_size" => 64.as(ConfigValue) "funfriend_size" => 75.as(ConfigValue)
}, },
"sound" => { "sound" => {
"volume" => 0.2.as(ConfigValue) "volume" => 0.2.as(ConfigValue)

View File

@ -153,11 +153,11 @@ module Funfriend
self.x != other.x || self.y != other.y self.x != other.x || self.y != other.y
end end
def to_s def to_s(io : IO)
"(#{x}, #{y})" io << "(#{x}, #{y})"
end end
def inspect def inspect(io : IO)
"(x: #{x.inspect}, y: #{y.inspect})" io << "(x: #{x.inspect}, y: #{y.inspect})"
end end
def self.zero def self.zero