mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-06-03 00:58:13 -04:00
18 lines
347 B
C#
18 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public abstract class Component : EditorExtension
|
|
{
|
|
public PPtr m_GameObject;
|
|
|
|
protected Component(ObjectReader reader) : base(reader)
|
|
{
|
|
m_GameObject = reader.ReadPPtr();
|
|
}
|
|
}
|
|
}
|