Catos Engine (Source)
0.0.1
Lightweight Game engine
Loading...
Searching...
No Matches
pair.h
Go to the documentation of this file.
1
//
2
// Created by allos on 8/27/2024.
3
//
4
5
#ifndef CATOS_PAIR_H
6
#define CATOS_PAIR_H
7
8
9
namespace
catos
{
10
12
template
<
typename
K,
typename
V>
13
struct
Pair
{
14
K
first
;
15
V
second
;
16
};
17
18
}
19
20
21
22
23
#endif
//CATOS_PAIR_H
catos
Definition
application.h:13
catos::Pair
Simple struct to hold 2 objects.
Definition
pair.h:13
catos::Pair::second
V second
Definition
pair.h:15
catos::Pair::first
K first
Definition
pair.h:14