mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
6 lines
97 B
C++
6 lines
97 B
C++
#pragma once
|
|
|
|
template <class T>
|
|
struct LinkedListItem : public T {
|
|
LinkedListItem<T> *next;
|
|
};
|