class Maimailog::Data::Detail::Judge

ノーツ判定

Attributes

good[RW]
great[RW]
miss[RW]
perfect[RW]

Public Class Methods

new() click to toggle source
# File lib/maimailog/data/detail.rb, line 14
def initialize
  @perfect = 0
  @great = 0
  @good = 0
  @miss = 0
end

Public Instance Methods

total() click to toggle source
# File lib/maimailog/data/detail.rb, line 21
def total
  @perfect + @great + @good + @miss
end