Panda3D
panda
src
skel
basicSkel.cxx
1
// Filename: basicSkel.cxx
2
// Created by: jyelon (31Jan07)
3
//
4
////////////////////////////////////////////////////////////////////
5
//
6
// PANDA 3D SOFTWARE
7
// Copyright (c) Carnegie Mellon University. All rights reserved.
8
//
9
// All use of this software is subject to the terms of the revised BSD
10
// license. You should have received a copy of this license along
11
// with this source code in a file named "LICENSE."
12
//
13
////////////////////////////////////////////////////////////////////
14
15
#include "basicSkel.h"
16
17
////////////////////////////////////////////////////////////////////
18
// Function: BasicSkel::set_value_alt
19
// Access: Public
20
// Description: Stores an integer value. Exact same functionality
21
// as set_value, except that this isn't an inline
22
// function.
23
////////////////////////////////////////////////////////////////////
24
void
BasicSkel::
25
set_value_alt
(
int
n) {
26
_value = n;
27
}
28
29
////////////////////////////////////////////////////////////////////
30
// Function: BasicSkel::get_value
31
// Access: Public
32
// Description: Retreives a value that was previously stored.
33
// Exact same functionality as get_value, except
34
// that this isn't an inline function.
35
////////////////////////////////////////////////////////////////////
36
int
BasicSkel::
37
get_value_alt
() {
38
return
_value;
39
}
BasicSkel::get_value_alt
int get_value_alt()
Retreives a value that was previously stored.
Definition:
basicSkel.cxx:37
BasicSkel::set_value_alt
void set_value_alt(int n)
Stores an integer value.
Definition:
basicSkel.cxx:25
Generated on Wed May 17 2017 23:47:10 for Panda3D by
1.8.13