CSComponent.cs 337 B

12345678910111213141516171819202122
  1. using System;
  2. namespace AtomicEngine
  3. {
  4. public partial class CSComponent : ScriptComponent
  5. {
  6. public override string GetTypeName()
  7. {
  8. return GetType().Name;
  9. }
  10. public bool Started
  11. {
  12. get { return started; }
  13. }
  14. internal bool started = false;
  15. }
  16. }