dxrubynd 1.4.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,29 @@
1
+ struct DXRubySprite {
2
+ VALUE vx;
3
+ VALUE vy;
4
+ VALUE vz;
5
+ VALUE vimage;
6
+ VALUE vtarget;
7
+ VALUE vangle;
8
+ VALUE vscale_x;
9
+ VALUE vscale_y;
10
+ VALUE vcenter_x;
11
+ VALUE vcenter_y;
12
+ VALUE valpha;
13
+ VALUE vblend;
14
+ VALUE vvisible;
15
+ VALUE vshader;
16
+ VALUE vcollision;
17
+ VALUE vcollision_enable;
18
+ VALUE vcollision_sync;
19
+ #ifdef DXRUBY15
20
+ VALUE vxy;
21
+ VALUE vxyz;
22
+ #endif
23
+ VALUE voffset_sync;
24
+ int vanish;
25
+ };
26
+
27
+ void Sprite_release( struct DXRubySprite *sprite );
28
+ void Sprite_internal_draw( VALUE self, VALUE vrt );
29
+
@@ -0,0 +1,10 @@
1
+ /*
2
+ ###################################
3
+ #
4
+ # DXRuby 1.4.7
5
+ #
6
+ ###################################
7
+ */
8
+ #define DXRUBY_VERSION "1.4.7"
9
+
10
+ //#define DXRUBY15
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DXRubynd
4
+ VERSION = "1.4.7"
5
+ end
data/lib/dxrubynd.rb ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "dxrubynd/version"
4
+ require_relative "dxruby.so"
data/sig/dxrubynd.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module DXRuby
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dxrubynd
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.7
5
+ platform: ruby
6
+ authors:
7
+ - nodai2hITC
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-12-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake-compiler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: 2D game library for Windows(DirectX9)
28
+ email:
29
+ - nodai2h.itc@gmail.com
30
+ executables: []
31
+ extensions:
32
+ - ext/dxruby/extconf.rb
33
+ extra_rdoc_files: []
34
+ files:
35
+ - CODE_OF_CONDUCT.md
36
+ - Gemfile
37
+ - LICENSE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - dxrubynd.gemspec
41
+ - ext/dxruby/COPYING
42
+ - ext/dxruby/collision.c
43
+ - ext/dxruby/collision.h
44
+ - ext/dxruby/dxruby-i386-mswin32.def
45
+ - ext/dxruby/dxruby.c
46
+ - ext/dxruby/dxruby.h
47
+ - ext/dxruby/extconf.rb
48
+ - ext/dxruby/font.c
49
+ - ext/dxruby/font.h
50
+ - ext/dxruby/image.c
51
+ - ext/dxruby/image.h
52
+ - ext/dxruby/input.c
53
+ - ext/dxruby/input.h
54
+ - ext/dxruby/matrix.c
55
+ - ext/dxruby/matrix.h
56
+ - ext/dxruby/messagethread.c
57
+ - ext/dxruby/messagethread.h
58
+ - ext/dxruby/sound.c
59
+ - ext/dxruby/sound.h
60
+ - ext/dxruby/sprite.c
61
+ - ext/dxruby/sprite.h
62
+ - ext/dxruby/version.h
63
+ - lib/dxrubynd.rb
64
+ - lib/dxrubynd/version.rb
65
+ - sig/dxrubynd.rbs
66
+ homepage: http://dxruby.osdn.jp/
67
+ licenses:
68
+ - zlib/libpng
69
+ metadata:
70
+ homepage_uri: http://dxruby.osdn.jp/
71
+ source_code_uri: https://github.com/nodai2hITC/dxrubynd
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 2.6.0
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.3.5
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: ":-)"
91
+ test_files: []