Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
protocolsupport
/
e08a02f68bdff0f29a279cdcc96cae43c6ff355e
/
.
/
src
/
protocolsupport
/
utils
/
IntTuple.java
blob: 3bfefa8f2c7c2399d7cfea8e8e96fd956e956a86 [
file
] [
log
] [
blame
] [
raw
]
package
protocolsupport
.
utils
;
public
class
IntTuple
{
private
final
int
i1
;
private
final
int
i2
;
public
IntTuple
(
int
i1
,
int
i2
)
{
this
.
i1
=
i1
;
this
.
i2
=
i2
;
}
public
int
getI1
()
{
return
i1
;
}
public
int
getI2
()
{
return
i2
;
}
}