1#
2#  TkDND (Tk Drag & Drop Extension) support
3#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4#
5require 'tk'
6
7# call setup script for general 'tkextlib' libraries
8require 'tkextlib/setup.rb'
9
10# call setup script
11require 'tkextlib/tkDND/setup.rb'
12
13module Tk
14  module TkDND
15    autoload :DND,   'tkextlib/tkDND/tkdnd'
16    autoload :Shape, 'tkextlib/tkDND/shape'
17  end
18end
19