summaryrefslogtreecommitdiffhomepage
path: root/mrblib/texture.rb
diff options
context:
space:
mode:
author_Tradam <[email protected]>2022-04-05 16:02:38 -0400
committer_Tradam <[email protected]>2022-04-05 16:02:38 -0400
commit7296393f62ce4967041f126cd2260557e7e00f3c (patch)
tree15b39e09fd8e2c52beda525b3c11c4a444def2e2 /mrblib/texture.rb
parent3a559960526ee7a9c59bfdef48699cf4880e1e7d (diff)
downloadmruby-raylib-7296393f62ce4967041f126cd2260557e7e00f3c.tar.gz
mruby-raylib-7296393f62ce4967041f126cd2260557e7e00f3c.zip
autogenned
Diffstat (limited to 'mrblib/texture.rb')
-rw-r--r--mrblib/texture.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/mrblib/texture.rb b/mrblib/texture.rb
deleted file mode 100644
index 4b5dea7..0000000
--- a/mrblib/texture.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-module Raylib
- class Texture
- # @!visibility private
- def h
- self.height
- end
-
- # @!visibility private
- def h=(height)
- self.height = height
- end
-
- # @!visibility private
- def w
- self.width
- end
-
- # @!visibility private
- def w=(width)
- self.width = width
- end
- end
-end