aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic2/Types.hpp
blob: 0fb1c8b111350d14da5fa7e1a9f8a51dc1021f8a (plain) (blame)
1
2
3
4
5
6
7
#pragma once

namespace OpenVic2 {
   using return_t = bool;
   // This mirrors godot::Error, where `OK = 0` and `FAILED = 1`.
   static const return_t SUCCESS = false, FAILURE = true;
}