From 8d716fc001c83a7f3979c1c55a78d3deb1d09802 Mon Sep 17 00:00:00 2001 From: Raoul1808 <37770353+Raoul1808@users.noreply.github.com> Date: Sat, 24 Sep 2022 13:22:40 +0200 Subject: [PATCH] Initial Commit --- .gitignore | 6 ++++ Properties/AssemblyInfo.cs | 35 ++++++++++++++++++++ RecordingStations.csproj | 68 ++++++++++++++++++++++++++++++++++++++ RecordingStations.sln | 16 +++++++++ RecordingStationsModule.cs | 24 ++++++++++++++ everest.yaml | 6 ++++ 6 files changed, 155 insertions(+) create mode 100644 .gitignore create mode 100644 Properties/AssemblyInfo.cs create mode 100644 RecordingStations.csproj create mode 100644 RecordingStations.sln create mode 100644 RecordingStationsModule.cs create mode 100644 everest.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39c9242 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +.idea/ diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2158142 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("RecordingStations")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("RecordingStations")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("A119E738-324B-48BE-A98B-B77AFAB9652E")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/RecordingStations.csproj b/RecordingStations.csproj new file mode 100644 index 0000000..e9221c5 --- /dev/null +++ b/RecordingStations.csproj @@ -0,0 +1,68 @@ + + + + + Debug + AnyCPU + {A119E738-324B-48BE-A98B-B77AFAB9652E} + Library + Properties + RecordingStations + RecordingStations + v4.5.2 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\Celeste.exe + + + ..\..\FNA.dll + + + ..\..\MMHOOK_Celeste.dll + + + + + + + ..\..\YamlDotNet.dll + + + + + + + + + + + + + diff --git a/RecordingStations.sln b/RecordingStations.sln new file mode 100644 index 0000000..1ca14ef --- /dev/null +++ b/RecordingStations.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RecordingStations", "RecordingStations.csproj", "{A119E738-324B-48BE-A98B-B77AFAB9652E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A119E738-324B-48BE-A98B-B77AFAB9652E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A119E738-324B-48BE-A98B-B77AFAB9652E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A119E738-324B-48BE-A98B-B77AFAB9652E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A119E738-324B-48BE-A98B-B77AFAB9652E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/RecordingStationsModule.cs b/RecordingStationsModule.cs new file mode 100644 index 0000000..43bffaf --- /dev/null +++ b/RecordingStationsModule.cs @@ -0,0 +1,24 @@ +using Celeste.Mod; + +namespace RecordingStations +{ + public class RecordingStationsModule : EverestModule + { + public static RecordingStationsModule Instance; + + public RecordingStationsModule() + { + Instance = this; + } + + public override void Load() + { + Logger.Log("RecStation", "Hello from RecordingStationsModule!"); + } + + public override void Unload() + { + Logger.Log("RecStation", "Goodbye from RecordingStationsModule!"); + } + } +} diff --git a/everest.yaml b/everest.yaml new file mode 100644 index 0000000..8117463 --- /dev/null +++ b/everest.yaml @@ -0,0 +1,6 @@ +- Name: RecordingStations + Version: 0.1.0 + DLL: bin/Debug/RecordingStations.dll + Dependencies: + - Name: Everest + Version: 1.0.0 \ No newline at end of file