![]() |
Custom Asteroids
1.0.0
A mod for Kerbal Space Program that lets users control where asteroids appear
|
Simple implementation of an ordered pair. More...
Public Member Functions | |
Pair () | |
Should have a default constructor. | |
Pair (T first, U second) | |
Creates a new ordered pair. More... | |
Properties | |
T | First [get, set] |
The first element of the pair. | |
U | Second [get, set] |
The second element of the pair. | |
Simple implementation of an ordered pair.
Works around the lack of tuple support in .NET 3.5
T | The type of the first pair element |
U | The type of the second pair element |
Pair | ( | T | first, |
U | second | ||
) |
Creates a new ordered pair.
[in] | first,second | The values to store |