123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wayne.Lib.StateEngine.Generic
- {
-
-
-
-
- public abstract class State<TMain> : State, IGenericState<TMain>
- {
- #region Properties
-
-
-
- protected TMain Main
- {
- get;
- private set;
- }
- #endregion
- #region IGenericState<TMain> Members
- TMain IGenericState<TMain>.WritableMain
- {
- get { return Main; }
- set { Main = value; }
- }
- #endregion
- }
- }
|