gsc-tool/src/s4/s4.hpp
2023-02-28 16:32:53 +01:00

27 lines
509 B
C++

// Copyright 2023 xensik. All rights reserved.
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
#include <stdinc.hpp>
#include <gsc/context.hpp>
namespace xsk::gsc::s4
{
constexpr usize code_count = 190;
constexpr usize func_count = 4;
constexpr usize meth_count = 0;
constexpr usize token_count = 0;
constexpr u32 max_string_id = 0x110F3;
class context : public gsc::context
{
public:
context();
};
} // namespace xsk::gsc::s4