summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoryn Aaron <zoryn4163@gmail.com>2016-02-28 20:29:43 -0500
committerZoryn Aaron <zoryn4163@gmail.com>2016-02-28 20:29:43 -0500
commit59a35d1112d38929ee930db481d9518308ddd3a1 (patch)
tree842112d5f53ef77b47aedfd3a9c1ea3d5adb9f34
parent2a716aa23cc47457aa28e105dfe835f476928be4 (diff)
downloadSMAPI-59a35d1112d38929ee930db481d9518308ddd3a1.tar.gz
SMAPI-59a35d1112d38929ee930db481d9518308ddd3a1.tar.bz2
SMAPI-59a35d1112d38929ee930db481d9518308ddd3a1.zip
readme
-rw-r--r--README.md77
1 files changed, 39 insertions, 38 deletions
diff --git a/README.md b/README.md
index bcea497c..bf6223b6 100644
--- a/README.md
+++ b/README.md
@@ -7,44 +7,45 @@ From there, you need to inherit from StardewModdingAPI.Mod
The first class that inherits from that class will be loaded into the game at runtime, and once the game fully initializes the mod, the method Entry() will be called once.
-It is recommended to subscribe to an event (from Events.cs) to be able to interface with the game rather than directly make changes from the Entry() method
+It is recommended to subscribe to an event (from Events.cs) to be able to interface with the game rather than directly make changes from the Entry() method.
-TestMod.cs:
- public class TestMod : Mod
- {
- public override string Name
+ TestMod.cs:
+
+ public class TestMod : Mod
{
- get { return "Test Mod"; }
- }
-
- public override string Authour
- {
- get { return "Zoryn Aaron"; }
- }
-
- public override string Version
- {
- get { return "0.0.1Test"; }
- }
-
- public override string Description
- {
- get { return "A Test Mod"; }
- }
-
- public override void Entry()
- {
- Console.WriteLine("Test Mod Has Loaded");
- Program.LogError("Test Mod can call to Program.cs in the API");
- Program.LogColour(ConsoleColor.Magenta, "Test Mod is just a tiny DLL file in AppData/Roaming/StardewValley/Mods");
-
- Events.GameLoaded += Events_GameLoaded;
- }
-
- void Events_GameLoaded()
- {
-
- Program.LogInfo("[Game Loaded Event] I can do things directly to the game now that I am certain it is loaded thanks to events.");
- }
- }
+ public override string Name
+ {
+ get { return "Test Mod"; }
+ }
+
+ public override string Authour
+ {
+ get { return "Zoryn Aaron"; }
+ }
+
+ public override string Version
+ {
+ get { return "0.0.1Test"; }
+ }
+
+ public override string Description
+ {
+ get { return "A Test Mod"; }
+ }
+
+ public override void Entry()
+ {
+ Console.WriteLine("Test Mod Has Loaded");
+ Program.LogError("Test Mod can call to Program.cs in the API");
+ Program.LogColour(ConsoleColor.Magenta, "Test Mod is just a tiny DLL file in AppData/Roaming/StardewValley/Mods");
+
+ Events.GameLoaded += Events_GameLoaded;
+ }
+
+ void Events_GameLoaded()
+ {
+
+ Program.LogInfo("[Game Loaded Event] I can do things directly to the game now that I am certain it is loaded thanks to events.");
+ }
+ } \ No newline at end of file