Files
CavesOfSwift/Sources/JolkEngine/Content/Image.swift
2024-05-05 17:01:56 +10:00

10 lines
105 B
Swift

import Foundation
public struct Image: Resource
{
let pixels: Data
let width: Int
let height: Int
}