updated physfs to inofficial 2.1 version

This commit is contained in:
fysx
2014-02-02 01:28:41 +01:00
parent 405c79a8fe
commit c9bb6ec3d6
553 changed files with 13324 additions and 26719 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/ruby
require 'physfs'
puts "testing PhysicsFS Ruby bindings..."
puts "init..."
Physfs.init($0)
puts "user dir: " + Physfs.getUserDir()
puts "base dir: " + Physfs.getBaseDir()
puts "pref dir: " + Physfs.getPrefDir("icculus.org", "test_physfs")
puts "deinit..."
Physfs.deinit()
puts "done!"
exit(0)