-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f72bc2
commit 77f4076
Showing
4 changed files
with
597 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Numerics; | ||
|
||
namespace WheresMouse | ||
{ | ||
|
||
internal class Maustrale | ||
{ | ||
|
||
public enum StyleEnum | ||
{ | ||
Boingo | ||
} | ||
|
||
public Vector2 Position { get; set; } | ||
public StyleEnum Style { get; set; } | ||
public Vector4 Color { get; set; } | ||
public double TTL { get; set; } | ||
public double TTLMax { get; set; } | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.