| 123456789101112131415161718192021222324 |
- export module Core.Image;
- export import Core.List;
- export import Core.Types;
- export namespace Core {
- struct Image8 {
- List<u8> data{};
- int width = 0;
- int height = 0;
- int channels = 0;
- bool read(const char* path);
- };
- struct Image16 {
- List<u16> data{};
- int width = 0;
- int height = 0;
- int channels = 0;
- bool read(const char* path);
- };
- }
|