class PAKFile::FileEntry

Base class for all files handled by PAKFile

Attributes

name[RW]

Public Class Methods

new(pack) click to toggle source

pack has to be PAKFile that owns this entry

# File lib/pakspy.rb, line 180
def initialize(pack)
  @pack = pack
  @name = ""
end

Public Instance Methods

read() click to toggle source
# File lib/pakspy.rb, line 185
def read
  puts "This is just a base class..."
  ""
end