summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib/tkimg/tga.rb
blob: c4068a729ca1a8790ff891974ef82ccb88bc3db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
#  TkImg - format 'tga'
#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'

# call setup script for general 'tkextlib' libraries
require 'tkextlib/setup.rb'

# call setup script
require 'tkextlib/tkimg/setup.rb'

# TkPackage.require('img::tga', '1.3')
TkPackage.require('img::tga')

module Tk
  module Img
    module TGA
      def self.package_version
	begin
	  TkPackage.require('img::tga')
	rescue
	  ''
	end
      end
    end
  end
end