mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
13 lines
229 B
C++
13 lines
229 B
C++
//
|
|
// Created by Даниил Виноградов on 23.02.2025.
|
|
//
|
|
|
|
#include <IndexPath.h>
|
|
|
|
using namespace NXKit;
|
|
|
|
IndexPath::IndexPath(int item, int section) {
|
|
_indexes.push_back(section);
|
|
_indexes.push_back(item);
|
|
}
|