mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-24 03:32:00 -08:00
16 lines
259 B
C#
16 lines
259 B
C#
using System;
|
|
|
|
namespace Boare.Lib.Vsq {
|
|
|
|
public struct VsqBPPair {
|
|
public int value;
|
|
public int id;
|
|
|
|
public VsqBPPair( int value_, int id_ ) {
|
|
value = value_;
|
|
id = id_;
|
|
}
|
|
}
|
|
|
|
}
|