Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/FPF/PresentationCore/System.Windows.Media.Animation.Animatable.cs')
-rw-r--r--src/Editor/FPF/PresentationCore/System.Windows.Media.Animation.Animatable.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Editor/FPF/PresentationCore/System.Windows.Media.Animation.Animatable.cs b/src/Editor/FPF/PresentationCore/System.Windows.Media.Animation.Animatable.cs
new file mode 100644
index 0000000..52cc7b1
--- /dev/null
+++ b/src/Editor/FPF/PresentationCore/System.Windows.Media.Animation.Animatable.cs
@@ -0,0 +1,11 @@
+namespace System.Windows.Media.Animation
+{
+ public abstract class Animatable : System.Windows.Freezable
+ { public virtual void BeginAnimation(System.Windows.DependencyProperty param0, System.Windows.Media.Animation.AnimationTimeline param1){throw new System.NotImplementedException();}
+
+ protected override Freezable CreateInstanceCore()
+ {
+ return null;
+ }
+ }
+} \ No newline at end of file