| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- * This file is part of RuneOptimizer.
- *
- * RuneOptimizer is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation, either version 3 of the License, or (at your option)
- * any later version.
- *
- * RuneOptimizer is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * RuneOptimizer. If not, see <https://www.gnu.org/licenses/>.
- */
- #define DB_NAME "data.sqlite"
- char db_location[256];
- struct Rune_Set_Count {
- unsigned short energy;
- unsigned short guard;
- unsigned short swift;
- unsigned short blade;
- unsigned short rage;
- unsigned short focus;
- unsigned short endure;
- unsigned short fatal;
- unsigned short despair;
- unsigned short vampire;
- unsigned short violent;
- unsigned short nemesis;
- unsigned short will;
- unsigned short shield;
- unsigned short revenge;
- unsigned short destroy;
- unsigned short fight;
- unsigned short determination;
- unsigned short enhance;
- unsigned short accuracy;
- unsigned short tolerance;
- };
- /**
- * Starts the program.
- *
- * Reads parameters and runs the appropiate functions.
- *
- * @param argc Argument count.
- * @param argv Argument list.
- * @return SUCCESS on success, other on error.
- */
- int main(int argc, char *argv[]);
|