KisaragiLibrary
 
読み取り中…
検索中…
一致する文字列を見つけられません
Kisaragi_ECS::ResourceInfo クラス

Resouceの保有と破棄を行う型 [詳解]

#include <Resouce.hpp>

公開メンバ関数

 ~ResourceInfo ()
 

公開変数類

std::function< void()> destroy
 
std::shared_ptr< void > resource
 

詳解

Resouceの保有と破棄を行う型

構築子と解体子

◆ ~ResourceInfo()

Kisaragi_ECS::ResourceInfo::~ResourceInfo ( )
inline
22 {
23 if (destroy)
24 {
25 destroy();
26 }
27 else
28 {
29 Debug::PrintWarningStatic("ResourceInfo : destroyが登録されていません");
30 }
31 }
std::function< void()> destroy
Definition Resouce.hpp:16

メンバ詳解

◆ destroy

std::function<void()> Kisaragi_ECS::ResourceInfo::destroy

参照元 ~ResourceInfo().

◆ resource

std::shared_ptr<void> Kisaragi_ECS::ResourceInfo::resource

このクラス詳解は次のファイルから抽出されました: