source:
trunk/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.3.2/SimSharp-3.3.2/Core/ActiveObject.cs
@
18190
Last change on this file since 18190 was 18023, checked in by jkarder, 3 years ago | |
---|---|
File size: 414 bytes |
Line | |
---|---|
1 | #region License Information |
2 | /* |
3 | * This file is part of SimSharp which is licensed under the MIT license. |
4 | * See the LICENSE file in the project root for more information. |
5 | */ |
6 | #endregion |
7 | |
8 | namespace SimSharp { |
9 | public abstract class ActiveObject<T> where T : Simulation { |
10 | protected T Environment { get; private set; } |
11 | |
12 | protected ActiveObject(T environment) { |
13 | Environment = environment; |
14 | } |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.