mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-29 13:21:59 -08:00
36 lines
947 B
C#
36 lines
947 B
C#
/*
|
|
* Item.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.
|
|
*/
|
|
namespace LipSync {
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public struct Item {
|
|
public TimeTableType type;
|
|
public int group;
|
|
public int track;
|
|
public int entry;
|
|
public int row_index;
|
|
|
|
public Item( TimeTableType type, int group, int track, int entry, int row_index ) {
|
|
this.type = type;
|
|
this.group = group;
|
|
this.track = track;
|
|
this.entry = entry;
|
|
this.row_index = row_index;
|
|
}
|
|
}
|
|
|
|
}
|