Skip to content

Commit

Permalink
Upped version number
Browse files Browse the repository at this point in the history
Added roll over test
  • Loading branch information
vchelaru committed Nov 3, 2024
1 parent da9639d commit d9300b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gum/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2024.11.2")]
[assembly: AssemblyFileVersion("2024.11.2")]
[assembly: AssemblyVersion("2024.11.3")]
[assembly: AssemblyFileVersion("2024.11.3")]
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ private void CreateColumn1Ui(GraphicalUiElement root)
button.Height = 50;
button.Text = "Hello MonoGame!";
int clickCount = 0;
button.Visual.RollOn += (_, _) =>
{
Debug.WriteLine($"Roll on at {DateTime.Now}");
};
button.Click += (_, _) =>
{
clickCount++;
Expand Down

0 comments on commit d9300b7

Please sign in to comment.