/* * 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 { /// /// /// 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; } } }