mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-29 13:21:59 -08:00
25 lines
604 B
C#
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 );
|
|
}
|
|
|
|
}
|