blob: 1620d7cfceed37480c4875cb9d772b9c093944fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Runtime/BaseClasses/BaseObject.h"
struct PPtrKeyframe
{
float time;
PPtr<Object> value;
DECLARE_SERIALIZE(PPtrKeyframe)
};
typedef dynamic_array<PPtrKeyframe> PPtrKeyframes;
|