Sha256: 63c38a26113282711e279f7fb2288daccfa628e224b450bd3b638931aed9de68

Contents?: true

Size: 172 Bytes

Versions: 1

Compression:

Stored size: 172 Bytes

Contents

module Attachable
  def attached?
    if @attached.nil?
      @attached = false
    end
    @attached
  end
  def attached=(bool)
    @attached = bool
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gamefic-sdk-1.6.0 scripts/standard/modules/attachable.plot.rb