#pragma once/** * This class will be called on anything we hook. * - TODO: OnTurn, OnEnemyCommand, OnChatMessage, OnGameStarts, OnGameEnds... * - For now we just do everything from endscene. */classUnit;classCore{boolskipLocalplayer=false;public:Core();voidOnPresent();voidOnShutdown();};