Esempio n. 1
0
 public ScratchAiWrapper(IScratchAi scratchAi)
 {
     Ai = scratchAi ?? throw new ArgumentNullException(nameof(scratchAi));
 }
Esempio n. 2
0
 public ScratchAiWrapper(Int32 identifier, IScratchAi scratchAi)
 {
     Ai         = scratchAi ?? throw new ArgumentNullException(nameof(scratchAi));
     Identifier = identifier;
 }