LoomModule.DelayedTask.cs 286 B

1234567891011121314151617
  1. using System;
  2. namespace IFramework
  3. {
  4. partial class LoomModule
  5. {
  6. private struct DelayedTask
  7. {
  8. public Action action;
  9. public DelayedTask(Action action)
  10. {
  11. this.action = action;
  12. }
  13. }
  14. }
  15. }