mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-05 17:21:38 -05:00
15 lines
No EOL
319 B
C#
15 lines
No EOL
319 B
C#
namespace VoiDPlugins.OemKill
|
|
{
|
|
class IndexedInf
|
|
{
|
|
public int index;
|
|
public string inf;
|
|
public string name;
|
|
public IndexedInf(int index, string name, string inf)
|
|
{
|
|
this.index = index;
|
|
this.inf = inf;
|
|
this.name = name;
|
|
}
|
|
}
|
|
} |