diff options
| author | nathan <nathansmith@disroot.org> | 2025-10-27 12:58:37 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-10-27 12:58:37 +0000 |
| commit | 95af9c76abef62466dc99cd48fe60d5c8c0677aa (patch) | |
| tree | 016e9b8ca2681603512980bb32b571db6b530e10 /src/entities/samantha.c | |
| parent | 5925230971875ba3e6e591f0655cf84b739b50fc (diff) | |
| download | FindThings-95af9c76abef62466dc99cd48fe60d5c8c0677aa.tar.gz FindThings-95af9c76abef62466dc99cd48fe60d5c8c0677aa.tar.bz2 FindThings-95af9c76abef62466dc99cd48fe60d5c8c0677aa.zip | |
Working on interaction stuff
Diffstat (limited to 'src/entities/samantha.c')
| -rw-r--r-- | src/entities/samantha.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/entities/samantha.c b/src/entities/samantha.c index a78b075..c8f08f6 100644 --- a/src/entities/samantha.c +++ b/src/entities/samantha.c @@ -19,3 +19,10 @@ void updateSamantha(Entity* entity, Game* game) DrawModel(game->assets.models[SAMANTHA_MODEL], entity->position, 1.0, WHITE); } + +InteractionCommand interactWithSamantha(Entity* entity, Game* game, + Selection selection) +{ + puts("test test"); + return INTERACTION_TALK; +} |
