mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-25 08:22:15 +00:00
16 lines
321 B
C#
16 lines
321 B
C#
using Microsoft.Xna.Framework;
|
|
using Xunit;
|
|
|
|
namespace MonoGame.Extended.Tweening.Tests;
|
|
|
|
public class TweenerTests
|
|
{
|
|
[Fact]
|
|
public void TweenerTweenToSuccessTest()
|
|
{
|
|
var tweener = new Tweener();
|
|
var obj = new ColorHandler();
|
|
tweener.TweenTo(obj, x => x.Color, Color.Red, 2f);
|
|
}
|
|
}
|