Sha256: 75c2a39a5e655a4b54cd4118bfd63e75ba309ab657712a45c24410c51211d67d

Contents?: true

Size: 176 Bytes

Versions: 1

Compression:

Stored size: 176 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.7.0 scripts/standard/modules/attachable.plot.rb