diff options
| author | Tom Black <[email protected]> | 2016-07-18 00:57:50 -0500 |
|---|---|---|
| committer | Tom Black <[email protected]> | 2016-07-18 00:57:50 -0500 |
| commit | b163a88fc11b654136c60ca3c7f26710d0b73e28 (patch) | |
| tree | 05ef8e76888bb08ef6ab70a48314a254540b30b1 /lib/ruby2d.rb | |
| parent | 721986fea456997a5fc7d26f3fc6bb893b6d191c (diff) | |
| download | ruby2d-b163a88fc11b654136c60ca3c7f26710d0b73e28.tar.gz ruby2d-b163a88fc11b654136c60ca3c7f26710d0b73e28.zip | |
Reorder require statements
Diffstat (limited to 'lib/ruby2d.rb')
| -rw-r--r-- | lib/ruby2d.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ruby2d.rb b/lib/ruby2d.rb index 3e8ab78..342e03a 100644 --- a/lib/ruby2d.rb +++ b/lib/ruby2d.rb @@ -1,15 +1,15 @@ # ruby2d.rb +require 'ruby2d/color' require 'ruby2d/window' require 'ruby2d/application' -require 'ruby2d/color' +require 'ruby2d/dsl' require 'ruby2d/quad' require 'ruby2d/rectangle' require 'ruby2d/square' require 'ruby2d/triangle' require 'ruby2d/image' require 'ruby2d/text' -require 'ruby2d/dsl' require 'ruby2d/exceptions' require 'ruby2d/ruby2d' # load native extension |
