01.10.2020
+ Time controls (Stopwatch, Timers, Intervals) + Added smmeries to everything in SM.Base ~ Renamed Vectors to CVectors.
This commit is contained in:
parent
7acdba92f8
commit
97e638d9d9
44 changed files with 1092 additions and 289 deletions
|
|
@ -25,11 +25,19 @@ namespace SM.Base.Controls
|
|||
/// </summary>
|
||||
public Vector2 InScreenNormalized { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// The constructor
|
||||
/// </summary>
|
||||
/// <param name="window">The window, its listen to.</param>
|
||||
protected internal Mouse(TWindow window)
|
||||
{
|
||||
_window = window;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The event to update the values.
|
||||
/// </summary>
|
||||
/// <param name="mmea">The event args.</param>
|
||||
protected void MouseMoveEvent(MouseMoveEventArgs mmea)
|
||||
{
|
||||
InScreen = new Vector2(mmea.X, mmea.Y);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue