Advertisement
uniblab

Untitled

Jun 13th, 2018
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.13 KB | None | 0 0
  1. interface IConditionChecker {
  2.   System.Boolean CheckCondition();
  3. }
  4.  
  5. interface ICondition {
  6.     System.Boolean IsTrue {
  7.         get;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement