├── .gitattributes ├── .gitignore ├── LICENSE ├── Mon ├── EventToken.cs ├── IAnimator │ ├── AbstractAffineDoubleAnimator.cs │ ├── AbstractAnimator.cs │ ├── AbstractDoubleAnimator.cs │ ├── CodeAnimator.cs │ ├── FadeAnimator.cs │ ├── HeightAnimator.cs │ ├── IAnimator.cs │ ├── MoveXAnimator.cs │ ├── MoveYAnimator.cs │ ├── PropertyAnimator.cs │ ├── RotateAnimator.cs │ ├── ScaleXAnimator.cs │ ├── ScaleYAnimator.cs │ └── WidthAnimator.cs └── Oli.cs ├── Monolith.csproj ├── Monolith.nuspec ├── Properties └── AssemblyInfo.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/LICENSE -------------------------------------------------------------------------------- /Mon/EventToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/EventToken.cs -------------------------------------------------------------------------------- /Mon/IAnimator/AbstractAffineDoubleAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/AbstractAffineDoubleAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/AbstractAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/AbstractAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/AbstractDoubleAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/AbstractDoubleAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/CodeAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/CodeAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/FadeAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/FadeAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/HeightAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/HeightAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/IAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/IAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/MoveXAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/MoveXAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/MoveYAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/MoveYAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/PropertyAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/PropertyAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/RotateAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/RotateAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/ScaleXAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/ScaleXAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/ScaleYAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/ScaleYAnimator.cs -------------------------------------------------------------------------------- /Mon/IAnimator/WidthAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/IAnimator/WidthAnimator.cs -------------------------------------------------------------------------------- /Mon/Oli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Mon/Oli.cs -------------------------------------------------------------------------------- /Monolith.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Monolith.csproj -------------------------------------------------------------------------------- /Monolith.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Monolith.nuspec -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLousyGuy/Monolith/HEAD/README.md --------------------------------------------------------------------------------