libER 0.1.4.2
ELDEN RING API library
Loading...
Searching...
No Matches
fd4_param.hpp
Go to the documentation of this file.
1
8#pragma once
9
10#include <fd4/resource.hpp>
11#include <param/param_file.hpp>
12
13namespace from {
14namespace FD4 {
19class FD4ParamResCap : public FD4ResCap {
20public:
21 FD4_RUNTIME_CLASS(FD4ParamResCap);
22
29 return this->file;
30 }
31
37 const param::param_file* const& get_param_file() const noexcept {
38 return this->file;
39 }
40
41private:
42 long long file_size;
44};
45} // namespace FD4
46} // namespace from
A resource capsule containing a param table file.
Definition fd4_param.hpp:19
const param::param_file *const & get_param_file() const noexcept
Get a pointer to the underlying param file (const).
Definition fd4_param.hpp:37
param::param_file *& get_param_file() noexcept
Get a pointer to the underlying param file.
Definition fd4_param.hpp:28
The base of any resource, which can also be a file or a repository.
Definition resource.hpp:120
ELDEN RING param file layouts.
The layout of a .param file.
Definition param_file.hpp:24