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
9namespace catos {
10
12 template<typename K, typename V>
13 struct Pair {
16 };
17
18}
19
20
21
22
23#endif //CATOS_PAIR_H
Definition application.h:13
Simple struct to hold 2 objects.
Definition pair.h:13
V second
Definition pair.h:15
K first
Definition pair.h:14