mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -04:00
18 lines
370 B
C#
18 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public abstract class Component : EditorExtension
|
|
{
|
|
public PPtr<GameObject> m_GameObject;
|
|
|
|
protected Component(ObjectReader reader) : base(reader)
|
|
{
|
|
m_GameObject = new PPtr<GameObject>(reader);
|
|
}
|
|
}
|
|
}
|