2021-06-21 14:26:09 +02:00
|
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
// Model definitions //
|
|
|
|
// //
|
|
|
|
// Copyright © 2021 The Gem-graph Project //
|
|
|
|
// //
|
|
|
|
// This file is part of gem-graph. //
|
|
|
|
// //
|
|
|
|
// This program is free software: you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU Affero General Public License as //
|
|
|
|
// published by the Free Software Foundation, either version 3 of the //
|
|
|
|
// License, or (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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 Affero General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU Affero General Public License //
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
|
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
|
|
|
|
#ifndef BASE_H
|
|
|
|
#include "../include/base.h"
|
|
|
|
#endif
|
|
|
|
|
2021-06-23 14:16:45 +02:00
|
|
|
void ModelSystemInit(void);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2021-06-23 14:16:45 +02:00
|
|
|
void ModelSystemDestroy(void);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2021-06-23 14:16:45 +02:00
|
|
|
int ModelLoad(int id);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2021-06-23 14:16:45 +02:00
|
|
|
void ModelCreate(Model_t **newModel);
|
|
|
|
|
|
|
|
int ModelLoad(int id);
|
2021-06-23 17:07:43 +02:00
|
|
|
|
2021-07-07 19:46:23 +02:00
|
|
|
void printModels(char *buf);
|
|
|
|
|
2021-06-23 17:07:43 +02:00
|
|
|
void ModelRun(int id);
|
|
|
|
|
|
|
|
void ModelStop(int id);
|
|
|
|
|
|
|
|
void ModelShutdown(void);
|