Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
HAM-2015 committed Mar 19, 2020
1 parent 45c869d commit e6413d6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CsGo/Go/generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3406,6 +3406,14 @@ public virtual generator parent
}
}

public virtual children brothers
{
get
{
return null;
}
}

public long id
{
get
Expand Down Expand Up @@ -9086,6 +9094,14 @@ public override generator parent
}
}

public override children brothers
{
get
{
return _childrenMgr;
}
}

public bool is_free()
{
return _isFree;
Expand Down Expand Up @@ -9292,6 +9308,14 @@ public generator parent
}
}

public bool ignored_suspend
{
get
{
return _ignoreSuspend;
}
}

public int discard(IEnumerable<child> gens)
{
Debug.Assert(self == _parent, "此 children 不属于当前 generator!");
Expand Down

0 comments on commit e6413d6

Please sign in to comment.