-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntireTexturePNG_.cpp
More file actions
40 lines (30 loc) · 910 Bytes
/
Copy pathEntireTexturePNG_.cpp
File metadata and controls
40 lines (30 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Copyright (c) 2025 BinaryGears. All rights reserved.
*
* This software is licensed under the MIT License.
* See the accompanying LICENSE file for details
*/
#include "EntireTexturePNG_.h"
EntireTexturePNG_::EntireTexturePNG_() {
}
EntireTexturePNG_::~EntireTexturePNG_() {
delete[] this->memblock;
}
uint32_t EntireTexturePNG_::mGetCharCount() {
return this->name_char_count;
}
std::string EntireTexturePNG_::mGetName() {
return this->name;
}
uint32_t EntireTexturePNG_::mGetTotalSubtextures() {
return this->total_sub_textures;
}
void EntireTexturePNG_::mSetCharCount(uint32_t name_char_count) {
this->name_char_count = name_char_count;
}
void EntireTexturePNG_::mSetName(char name) {
this->name = this->name + name;
}
void EntireTexturePNG_::mSetTotalSubtextures(uint32_t total_sub_textures) {
this->total_sub_textures = total_sub_textures;
}