aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/scripts/EffectScript.hpp
blob: f5acf78104fadc1e7725b3675938d57c328f22f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "openvic-simulation/scripts/Script.hpp"

namespace OpenVic {
   struct GameManager;

   struct EffectScript final : Script<GameManager&> {
   protected:
      bool _parse_script(ast::NodeCPtr root, GameManager& game_manager) override;
   };
}