mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
13 lines
262 B
C
13 lines
262 B
C
![]() |
#pragma once
|
||
|
|
||
|
namespace vcpkg::Parse
|
||
|
{
|
||
|
struct TextRowCol
|
||
|
{
|
||
|
/// '0' indicates uninitialized; '1' is the first row.
|
||
|
int row = 0;
|
||
|
/// '0' indicates uninitialized; '1' is the first column.
|
||
|
int column = 0;
|
||
|
};
|
||
|
}
|