1 |
william |
443 |
#region Logging Defines |
2 |
|
|
// include this any class or method that required logging, and comment-out what is not needed |
3 |
|
|
#define LOGGING_ENABLED // this is only valid within the logger class |
4 |
|
|
#region Enabled logging levels |
5 |
|
|
#define LOGGING_ENABLE_INFO |
6 |
|
|
#define LOGGING_ENABLE_WARN |
7 |
|
|
#define LOGGING_ENABLE_DEBUG |
8 |
|
|
#define LOGGING_ENABLE_VERBOSEDEBUG |
9 |
|
|
#define LOGGING_ENABLE_ERROR |
10 |
|
|
#define LOGGING_ENABLE_VERBOSEERROR |
11 |
|
|
#define LOGGING_ENABLE_PROFILER |
12 |
|
|
#endregion |
13 |
|
|
#endregion |
14 |
|
|
|
15 |
|
|
using System; |
16 |
william |
440 |
using System.Collections.Generic; |
17 |
|
|
using System.ComponentModel; |
18 |
|
|
using System.Data; |
19 |
|
|
using System.Drawing; |
20 |
|
|
using System.Linq; |
21 |
|
|
using System.Text; |
22 |
|
|
using System.Windows.Forms; |
23 |
|
|
using WeifenLuo.WinFormsUI.Docking; |
24 |
|
|
|
25 |
|
|
namespace RomCheater.CheatPlugin |
26 |
|
|
{ |
27 |
|
|
public partial class CheatCodeDockContent : DockContent |
28 |
|
|
{ |
29 |
|
|
public CheatCodeDockContent() |
30 |
|
|
{ |
31 |
|
|
InitializeComponent(); |
32 |
|
|
} |
33 |
|
|
} |
34 |
|
|
} |