OSDN Git Service

コア部分を共通プロジェクト化した
[fooeditengine/FooEditEngine.git] / Core / Direct2D / DrawingEffect.cs
1 /*
2  * Copyright (C) 2013 FooProject
3  * * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
5
6  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of 
7  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
8
9 You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
10  */
11 using System;
12 using SharpDX;
13 using D2D = SharpDX.Direct2D1;
14
15 namespace FooEditEngine
16 {
17     sealed class DrawingEffect : ComObject, IDisposable
18     {
19         public HilightType Stroke;
20         public Color4 Fore;
21         public DrawingEffect(HilightType type, Color4 fore)
22         {
23             this.Stroke = type;
24             this.Fore = fore;
25         }
26
27         void IDisposable.Dispose()
28         {
29         }
30     }
31 }