summaryrefslogtreecommitdiffhomepage
path: root/mrbdoc/core.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrbdoc/core.rb')
-rw-r--r--mrbdoc/core.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/mrbdoc/core.rb b/mrbdoc/core.rb
deleted file mode 100644
index 828bb48..0000000
--- a/mrbdoc/core.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-
-class Rect
- # yardoc garbage test
- #
- # @param poo [Integer] this is more
- def yep(stuff)
- end
-end
-
-module Raylib
- class << self
-
- # Initialize window and OpenGL context.
- #
- # @param width [Integer] width ye
- # @param height [Integer] height ye
- # @param title [String] title ye
- # @return (Nil)
-
- # Creates a new {FelECS::ComponentManager component manager}.
- #
- # @example
- # # Here color is set to default to red
- # # while max and current are nil until set.
- # # When you make a new component using this component manager
- # # these are the values and accessors it will have.
- # FelECS::Component.new('Health', :max, :current, color: 'red')
- #
- # @param width [String] Name of your new component manager. Must be stylized in the format of constants in Ruby
- # @param height [:Symbols] New components made with this manager will include these symbols as accessors, the values of these accessors will default to nil
- # @param title [Keyword: DefaultValue] New components made with this manager will include these keywords as accessors, their defaults set to the values given to the keywords
- # @return [ComponentManager]
- def init_window(width: 800, height: 600, title: "Hello World from FelFlame!")
- end
- end
-end