File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33using System ;
44using System . Collections . Generic ;
55using Ray2Mod . Game ;
6- using Ray2Mod . Game . Functions ;
76
87namespace Ray2Mod . Components
98{
Original file line number Diff line number Diff line change @@ -4,13 +4,15 @@ public interface IMod
44 {
55 /// <summary>
66 /// Runs before the game is loaded and passes the remote interface to the mod.
7+ /// Note: While most function hooks can be created at this point,
8+ /// variables are probably not initialized yet.
79 /// </summary>
810 /// <param name="remoteInterface"></param>
911 void Initialize ( RemoteInterface remoteInterface ) ;
1012
1113 /// <summary>
1214 /// Runs after the game is loaded.
13- /// All function hooks should be created here .
15+ /// Most variables and pointers should be initialized at this point .
1416 /// </summary>
1517 void Run ( ) ;
1618 }
Original file line number Diff line number Diff line change 11using System . Reflection ;
2- using System . Runtime . CompilerServices ;
32using System . Runtime . InteropServices ;
43
54// General Information about an assembly is controlled through the following
3231// You can specify all the values or you can default the Build and Revision Numbers
3332// by using the '*' as shown below:
3433// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "1.1 .0.0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.1 .0.0" ) ]
34+ [ assembly: AssemblyVersion ( "1.2 .0.0" ) ]
35+ [ assembly: AssemblyFileVersion ( "1.2 .0.0" ) ]
You can’t perform that action at this time.
0 commit comments