#pragma once

/*
	GameEngine and Editor
	by John Ryland
	Copyright (c) 2023
*/

////////////////////////////////////////////////////////////////////////////////////
//	Device Image

namespace GameEngine {

class DeviceImage
{
public:
    union
    {
        void*   ptr;
        int     id;
    };
};

} // GameEngine namespace
