7380d08c6d94e2f8aa067cd9460c9f3dbbe6be7e
[platform/core/csapi/tizenfx.git] / NUISamples / NUISamples.TizenTV / firstscreen / IFocusEffect.cs
1 using Tizen.NUI;
2 using System;
3
4 namespace FirstScreen
5 {
6     public enum FocusEffectDirection
7     {
8         TopToBottom,
9         BottomToTop
10     };
11
12     public interface IFocusEffect
13     {
14         void FocusAnimation(View parentItem, Size itemSize, int duration, FocusEffectDirection direction);
15     }
16 }