27 lines
541 B
C++
Raw Normal View History

2025-02-20 05:32:33 -05:00
// Copyright 2025 xensik. All rights reserved.
2024-02-27 01:34:37 -05:00
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
#include "xsk/stdinc.hpp"
#include "xsk/gsc/context.hpp"
namespace xsk::gsc::s1_ps
{
constexpr usize code_count = 154;
constexpr usize func_count = 3;
constexpr usize meth_count = 0;
constexpr usize token_count = 0;
2025-02-20 05:32:33 -05:00
constexpr u32 max_string_id = 0xA51D;
2024-02-27 01:34:37 -05:00
2025-02-20 05:32:33 -05:00
struct context : public gsc::context
2024-02-27 01:34:37 -05:00
{
public:
2025-02-20 05:32:33 -05:00
context(gsc::instance inst);
2024-02-27 01:34:37 -05:00
};
} // namespace xsk::gsc::s1_ps