ZeroZero Game Engine  v0.0
A 3D game engine using Vulkan & Jolt
Public Member Functions | List of all members
Resource Class Reference

Detailed Description

Base class for resources.

Inheritance diagram for Resource:
Object Animation AnimationLibrary Cubemap Font Image Material Mesh Shape Texture

Public Member Functions

auto getId () const
 
const auto & getName () const
 
string toString () const override
 
virtual shared_ptr< Resource > duplicate () const
 
- Public Member Functions inherited from Object
void connect (const Signal::signal &name, const Signal::Handler &handler)
 
void connect (const Signal::signal &name, const function< void ()> &handler)
 
void emit (const Signal::signal &name, void *params=nullptr)
 

Member Function Documentation

virtual shared_ptr<Resource> duplicate ( ) const
nodiscardinlinevirtual

Duplicates a resource. Warning : not implemented on all resources types, check documentation for the resource type before using it.

Reimplemented in z0::BoxShape::duplicate(), z0::ConvexHullShape::duplicate()

auto getId ( ) const
nodiscardinline

Returns the unique id of the resource

const auto& getName ( ) const
nodiscardinline

Return the name (only informative, no real use)

string toString ( ) const
nodiscardinlineoverridevirtual

Converts the objet to a readable text

Reimplemented from z0::Object::toString()