The Snivy Video Game Is Complete

This commit is contained in:
2025-12-29 05:10:56 -05:00
parent d0f9669b8b
commit 62b988a678
705 changed files with 210576 additions and 162 deletions

19
src/cursor.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include "resource/actor.h"
namespace game
{
class Cursor : public resource::Actor
{
public:
static constexpr const char* ANIMATION_DEFAULT = "Default";
static constexpr const char* ANIMATION_HOVER = "Hover";
static constexpr const char* ANIMATION_GRAB = "Grab";
static constexpr const char* ANIMATION_RUB = "Rub";
Cursor(anm2::Anm2* anm2);
void update();
};
}