20 lines
364 B
C
20 lines
364 B
C
#include "editorstate.h"
|
|
#include <stdio.h>
|
|
|
|
/*
|
|
void (*asset_command)(char *asset) = print_file;
|
|
|
|
void print_file(char *file)
|
|
{
|
|
YughInfo("File path: %s", file);
|
|
}
|
|
|
|
void set_new_model(char *modelPath)
|
|
{
|
|
printf("Loading new model: %s\n", modelPath);
|
|
curActor->model = GetExistingModel(modelPath);
|
|
strcpy(curActor->currentModelPath, modelPath);
|
|
}
|
|
|
|
*/
|