Limo
A simple mod manager
Loading...
Searching...
No Matches
conflictinfo.h
Go to the documentation of this file.
1
5
6#pragma once
7
8#include <string>
9#include <vector>
10
11
16{
18 std::string file;
20 std::vector<int> mod_ids;
22 std::vector<std::string> mod_names;
23};
Stores information about a file conflict.
Definition conflictinfo.h:16
std::vector< std::string > mod_names
Name of the conflicts winning mod.
Definition conflictinfo.h:22
std::vector< int > mod_ids
Id of the conflicts winning mod.
Definition conflictinfo.h:20
std::string file
Name of the conflicting file.
Definition conflictinfo.h:18