29 lines
737 B
C#
29 lines
737 B
C#
/*
|
|
* RsiImporter.cs
|
|
* Copyright (c) 2007-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.Collections.Generic;
|
|
|
|
namespace LipSync {
|
|
|
|
public class CharacterEx{
|
|
public Character3 character;
|
|
public List<string> exclusion;
|
|
public CharacterEx(){
|
|
character = new Character3();
|
|
exclusion = new List<string>();
|
|
}
|
|
}
|
|
|
|
}
|