Created
April 21, 2020 11:54
-
-
Save openroomxyz/116a77511c90bcb3e3136b4753bf7cfe to your computer and use it in GitHub Desktop.
Unity C# : How to call constructor of super class from child class?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class XYRGBA : Y2019.December.Day30.XYRGBA | |
| { | |
| public XYRGBA(int n) : base(n) | |
| { | |
| } | |
| public void something() | |
| { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment