From 7babb2b8aa5eefc7940eb862aacb5a814347eb45 Mon Sep 17 00:00:00 2001 From: Adam Mathieson Date: Tue, 3 May 2022 01:21:53 +0200 Subject: [PATCH 1/2] + general cleanup --- OmsiHook/logo.svg | 2 +- README.md | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/OmsiHook/logo.svg b/OmsiHook/logo.svg index 4737df0..9cd0114 100644 --- a/OmsiHook/logo.svg +++ b/OmsiHook/logo.svg @@ -4,5 +4,5 @@ - + \ No newline at end of file diff --git a/README.md b/README.md index 7bd7b48..e7060b2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Omsi-Extensions +# Omsi-Extensions Omsi hooking and modding sdk. [![.NET](https://github.com/space928/Omsi-Extensions/actions/workflows/dotnet.yml/badge.svg)](https://github.com/space928/Omsi-Extensions/actions/workflows/dotnet.yml) @@ -50,15 +50,15 @@ projects using OmsiHook which run under various frameworks. Here's a summary of the project structure: ``` \Omsi-Extensions\ -|| -||=> \OmsiHook\ -> Base library containing all the Omsi hooking code and -|| exposing Omsi's internal data. -||=> \OmsiHookInvoker\ -> C++ plugin for invoking native Omsi methods from OmsiHook, -|| only used by OmsiHook. -||=> \OmsiExtensionsCLI\ -> Example command line application that uses OmsiHook; runs -|| outside of Omsi. -||=> \OmsiExtensionsUI\ -> Example Avalonia UI (similar to WPF) application that uses -|| OmsiHook; runs outside of Omsi. -||=> \OmsiHookPlugin\ -> Example plugin that uses OmsiHook and compiles to a native +┃ +┠─▹ \OmsiHook\ -> Base library containing all the Omsi hooking code and +┃ exposing Omsi's internal data. +┠─▹ \OmsiHookInvoker\ -> C++ plugin for invoking native Omsi methods from OmsiHook, +┃ only used by OmsiHook. +┠─▹ \OmsiExtensionsCLI\ -> Example command line application that uses OmsiHook; runs +┃ outside of Omsi. +┠─▹ \OmsiExtensionsUI\ -> Example Avalonia UI (similar to WPF) application that uses +┃ OmsiHook; runs outside of Omsi. +┖─▹ \OmsiHookPlugin\ -> Example plugin that uses OmsiHook and compiles to a native Omsi plugin by using DNNE. ``` From cf4cf3ba86478d363466fdfac0784e2f2669b29d Mon Sep 17 00:00:00 2001 From: Adam Mathieson Date: Tue, 3 May 2022 01:22:38 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e7060b2..149b765 100644 --- a/README.md +++ b/README.md @@ -51,14 +51,14 @@ Here's a summary of the project structure: ``` \Omsi-Extensions\ ┃ -┠─▹ \OmsiHook\ -> Base library containing all the Omsi hooking code and +┠─► \OmsiHook\ -> Base library containing all the Omsi hooking code and ┃ exposing Omsi's internal data. -┠─▹ \OmsiHookInvoker\ -> C++ plugin for invoking native Omsi methods from OmsiHook, +┠─► \OmsiHookInvoker\ -> C++ plugin for invoking native Omsi methods from OmsiHook, ┃ only used by OmsiHook. -┠─▹ \OmsiExtensionsCLI\ -> Example command line application that uses OmsiHook; runs +┠─► \OmsiExtensionsCLI\ -> Example command line application that uses OmsiHook; runs ┃ outside of Omsi. -┠─▹ \OmsiExtensionsUI\ -> Example Avalonia UI (similar to WPF) application that uses +┠─► \OmsiExtensionsUI\ -> Example Avalonia UI (similar to WPF) application that uses ┃ OmsiHook; runs outside of Omsi. -┖─▹ \OmsiHookPlugin\ -> Example plugin that uses OmsiHook and compiles to a native +┖─► \OmsiHookPlugin\ -> Example plugin that uses OmsiHook and compiles to a native Omsi plugin by using DNNE. ```