From 039ed50b42601b96ec5f2d4a42cb61e26fdce0db Mon Sep 17 00:00:00 2001 From: Rue <135553058+Ruemena@users.noreply.github.com> Date: Sun, 19 Nov 2023 18:04:17 -0600 Subject: [PATCH] Update getting-started.md --- markdown/getting-started.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/markdown/getting-started.md b/markdown/getting-started.md index 8b3a794..09ce6ed 100644 --- a/markdown/getting-started.md +++ b/markdown/getting-started.md @@ -1 +1,10 @@ -# Getting Started \ No newline at end of file +# Getting Started +this guide assumes that you have a basic level of knowledge with c#. + +there are two main ways of using RueI: through a normal dependency or through reflection. +- with a normal dependency, you include RueI as a dependency in your project. the advantages of this are that it gives you type safety, it is significantly faster, and it is just overall much easier to use. however, if someone does *not* have RueI installed, then your plugin will stop working. this makes it ideal for plugins that rely on RueI heavily, or if you're creating a plugin for your own use. +- with reflection, you can dynamically add support for RueI, meaning that your plugin works even if someone doesn't have RueI installed. + +this guide will cover how to use RueI using the first option, as a normal dependency. + +### installing RueI