lipsync/trunk/LipSync/Editor/IMultiLanguageControl.cs

25 lines
604 B
C#

/*
* IMultiLanguageControl.cs
* Copyright (c) 2008-2009 kbinani
*
* This file is part of LipSync.
*
* LipSync is free software; you can redistribute it and/or
* modify it under the terms of the BSD License.
*
* LipSync is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
using System;
using System.Drawing;
namespace LipSync {
interface IMultiLanguageControl {
void ApplyLanguage();
void ApplyFont( Font font );
}
}