Esempio n. 1
0
 /// <summary>Resets the state associated with the sample framework</summary>
 public void ResetState()
 {
 State = new FrameworkData();
 }
Esempio n. 2
0
 /// <summary>
 /// Constructor, init data here
 /// </summary>
 public Framework()
 {
     State = new FrameworkData();
 }
Esempio n. 3
0
 /// <summary>
 /// Constructor, init data here
 /// </summary>
 public Framework()
 {
     State = new FrameworkData();
     // Store the window proc delegate here, it may get used a few times
     State.WindowProcDelegate = new NativeMethods.WndProcDelegate(WindowsProcedure);
 }