From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。
---
HotelPms.Share.Windows/Animations/AnimationDirection.cs | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Share.Windows/Animations/AnimationDirection.cs b/HotelPms.Share.Windows/Animations/AnimationDirection.cs
new file mode 100644
index 0000000..5d130d8
--- /dev/null
+++ b/HotelPms.Share.Windows/Animations/AnimationDirection.cs
@@ -0,0 +1,12 @@
+namespace HotelPms.Share.Windows.Animations
+{
+ enum AnimationDirection
+ {
+ In, //In. Stops if finished.
+ Out, //Out. Stops if finished.
+ InOutIn, //Same as In, but changes to InOutOut if finished.
+ InOutOut, //Same as Out.
+ InOutRepeatingIn, // Same as In, but changes to InOutRepeatingOut if finished.
+ InOutRepeatingOut // Same as Out, but changes to InOutRepeatingIn if finished.
+ }
+}
--
Gitblit v1.10.0